Posted January 14, 20169 yr I'm still getting used to this scripting engine... so far for all the other versions variable declarations where: var x and that was goo... however... I do it and in the log window, I get "Invalid Variable Name" ? should I declare it in a specific scope? or it can be under a label scope ?
January 16, 20169 yr The var command is kind of deprecated. Just type x = 3 and it will create the variable when needed (var gives an error if you already declared x). If you want to be explicit that x is a variable, write $x = 3
January 16, 20169 yr Author 3 hours ago, Mr. eXoDia said: The var command is kind of deprecated. Just type x = 3 and it will create the variable when needed (var gives an error if you already declared x). If you want to be explicit that x is a variable, write $x = 3 Awesome thanks for this Mr. eXoDia also now that I have you here, I've been trying to look in the script reference for the command EOB but haven't been able to find it... will it be included in a near future? EOB label --------- Transfer execution to some label on next breakpoint. (see BPGOTO command to assign a label to a breakpoint) Example: eob SOME_LABEL
January 20, 20169 yr At the moment I don't have plans for extending the script language. However contributions are always welcome EDIT: main reason for this is that I don't have time. All the time I devote to x64dbg goes to stability and performance fixes. Edited January 20, 20169 yr by Mr. eXoDia
Create an account or sign in to comment