Jump to content
Tuts 4 You

Invalid Variable Name?


0xNOP

Recommended Posts

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 ?

Link to comment

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

  • Like 1
Link to comment
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 :D 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

 

  • Like 1
Link to comment

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 by Mr. eXoDia
  • Like 1
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...