Is this a glitch in HTML or part of AUTOiT3 code?

02/05/2016 19:43 psychoninja911#1
Below you'll see this
&#036
It's making Autoit3 error out.

I pulled this script form another post on here. I know some Autoit3 but not enough to read colors and perform actions based off that. I can click buttons, loops, pause button, mouse clicks, background clicks, etc.

But I can't figure out what &#036 means. It's giving an error. I can't tell if it's one of those HTML errors and if it's supposed to be another character or what.

See below:



MsgBox(0,"Chat Friendly ini addition","Move mouse over first attack")
$temp = MouseGetPos()
IniWrite("Vamp.ini","chat","Attack1posx",$tem p[0])
IniWrite("Vamp.ini","chat","Attack1posy",$tem p[1])
MsgBox(0,"Chat Friendly ini addition","Move mouse over second attack")
$temp = MouseGetPos()
02/05/2016 20:08 °Incinerate#2
The Dollarsymbol is defines a variable.

[Only registered and activated users can see links. Click Here To Register...]

This is the correct code:
Code:
MsgBox(0,"Chat Friendly ini addition","Move mouse over first attack")
$temp = MouseGetPos()
IniWrite("Vamp.ini","chat","Attack1posx",$temp[0])
IniWrite("Vamp.ini","chat","Attack1posy",$temp[1])
MsgBox(0,"Chat Friendly ini addition","Move mouse over second attack")
$temp = MouseGetPos()
02/05/2016 20:37 psychoninja911#3
Quote:
Originally Posted by °Incinerate View Post
The Dollarsymbol is defines a variable.

[Only registered and activated users can see links. Click Here To Register...]

This is the correct code:
Code:
MsgBox(0,"Chat Friendly ini addition","Move mouse over first attack")
$temp = MouseGetPos()
IniWrite("Vamp.ini","chat","Attack1posx",$temp[0])
IniWrite("Vamp.ini","chat","Attack1posy",$temp[1])
MsgBox(0,"Chat Friendly ini addition","Move mouse over second attack")
$temp = MouseGetPos()
Yeah I googled and found that, but I didn't remove the ; when editing the code.
So mine said $;temp and gave me an error.

Almost figured it out on my own :P

Thanks a bunch though, I appreciate it.
02/06/2016 10:39 °Incinerate#4
The semicolon is just for a comments.