11.09.2010, 06:17
For example, i have a Gamemode. And then i add this script:
And then, i open in a Filterscript that i'm going to use it together with the gamemode:
Will that GetPVarInt returns 200 (Like in the gamemode) into the pVar Variable?
I mean, can GetPVar(Int/Str, etc...) used across scripts?
pawn Код:
SetPVarInt(2, "cool", 200); //Sets ID 2 Player Variable "cool" into 200
pawn Код:
new pVar;
pVar = GetPVarInt(2, "cool");
I mean, can GetPVar(Int/Str, etc...) used across scripts?