Just a few million of these value)> [ERROR:] object:<Reboundings> function:<Trigger2658> <[string "function Trigger2658()..."]:2: attempt to concatenate global 'Target' (a nil value)>
So I imagine its looking for the word target, rather than picking my targets name off the table?
You suddenly perceive the vague outline of an aura of rebounding around <person>./nTARGET IS
REBOUNDING./n
Everiine said: The reason population is low isn't because there are too many orgs. It's because so many facets of the game are outright broken and protected by those who benefit from it being that way. An overabundance of gimmicks (including game-breaking ones), artifacts that destroy any concept of balance, blatant pay-to-win features, and an obsession with convenience that makes few things actually worthwhile all contribute to the game's sad decline.
Comments
^You suddenly perceive the vague outline of an aura of rebounding around (\w+)\.$
Script is:
if string.lower("" .. matches[2] .. "") == string.lower("" .. Target .. "") then
<<put your highlight script here>>
end
Signature!
Signature!
value)>
[ERROR:] object:<Reboundings> function:<Trigger2658>
<[string "function Trigger2658()..."]:2: attempt to concatenate global 'Target' (a nil
value)>
So I imagine its looking for the word target, rather than picking my targets name off the table?
target = matches[2]
target = string.title(target)
cecho("\nTarget is: " .. target .. ".\n")
and
this is the script I used for rebounding
if string.lower(matches[2]) == string.lower("" .. target .. "") then
cecho("/nTARGET IS REBOUNDING./n")
end
OR
if matches[2]:title() == target then
OR
if matches[2] == target:lower() then
BUT do check the error view for any continued errors. Also, it seems from the error you have Target, not target. Lua is case-sensitive.
Signature!