Quote:
Originally Posted by joligario
Oh, it also seems I was editing my post while you were replying. Don't forget to check the update above.
EDIT: To make it local, you declare it in the scope you want to use it. To make it private, add the "my" identifier.
sub whatever {
my $localvariable = 0;
$localvariable = 25;
}
Using it that way makes a variable available to only this sub. Looking at what you are doing above, you do not want a local variable.
|
oh ok
yeah i know declaring in the sub would reset it when the events triggered. I dunno it seems kind of buggy the way im doing it. I mean id need it to trigger correctly for each player. I think that means i have to do q globals right?
I tried that once and gave up cause i could never make it work lol.