function bash () if myRage > 50 and spinningbackfist and tornadokick then send("tnk " .. target) send("sbp " .. target) send("combo " .. target .. " sdk ucp ucp") elseif myRage > 36 and tornadokick then send("tnk " .. target) send("combo " .. target .. " sdk ucp ucp") elseif myRage > 14 and spinningbackfist then send("sbp " .. target) send("combo " .. target .. " sdk ucp ucp") elseif myRage > 14 then send("combo " .. target .. "sdk ucp ucp") end endThank you in advance for any help that can be given.
Comments
Penwize has cowardly forfeited the challenge to mortal combat issued by Atalkez.
Thanks for the help.
To the second question
if myRage => 14 then
rage.spinningbackfist = true
end
If this is giving you problems, ensure the rage table is created beforehand. I suggest having a table created in a script with all relevant variables made to prevent non-firing.
Cascades of quicksilver light streak across the firmament as the celestial voice of Ourania intones, "Oh Jarrod..."
Thank you very much for the help!!
So gave it a shot...keep getting an error...
Lua syntax error:[string "function trigger123()..."]:4:'then' expected near '='
Anyone able to translate?
if myRage => 14 then
rage.spinningbackfist == true
end
if myRage => 14 then
rage.spinningbackfist = true
end
== compares two variables, = assigns a value to a variable.
if myRage >= 14 then
rage.spinningbackfist = true
end