maybe a stupid question, but sometimes i see local.player=parm.other in scripts.
where doest parm.other stand for ?
local.player=parm.other
Moderator: Moderators
local.player=parm.other
[VS-UK]Maj.OddBall[BnHQ]
local.player
Actually, it stores all the trigger user's properties (parameters), including his targetname, as a variable. So, anything you do to "local.player" will affect that player. However, the properties of that player are not updated in the variable, unless "local.player = parm.other" is in a continuously looping thread.
You are not restricted to using "local.player" as the variable name--"local.sucker", or any name, will work just as well.
You are not restricted to using "local.player" as the variable name--"local.sucker", or any name, will work just as well.

