0xNOP Posted January 14, 2016 Posted January 14, 2016 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 ?
mrexodia Posted January 16, 2016 Posted January 16, 2016 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 1
0xNOP Posted January 16, 2016 Author Posted January 16, 2016 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 1
mrexodia Posted January 20, 2016 Posted January 20, 2016 (edited) 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, 2016 by Mr. eXoDia 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now