Hello, i need a variable to make this
if character name is (NAME) then
action to this char
else
action to other characters
end
i used this
if ($name == 'character') then
action 1
else
action 2
end
but dont work :(
Printable View
Hello, i need a variable to make this
if character name is (NAME) then
action to this char
else
action to other characters
end
i used this
if ($name == 'character') then
action 1
else
action 2
end
but dont work :(
This should work, plase post full action.
@WillzWayn character name must be case-sensitive like:
if $name == "Eternal Oblivion"
then
action 1
else
action 2
end