Hey just wondering if u can assign a global varible which you can then call from any procedure/function.
for eg.
OnJoinGame
If name = jack thompson then
dickhead := 1
end;
OnPlayerSpeak
if dickhead := 1 then
Command('/KILL ' + inttostr(Dickhead));
end;
not proper scripting but just to give you an idea of what i want to be able to do. I was thinking I could do it by writing and reading from files but thats seems like unnessasery effort if it's possible to just define a global varible.