14.10.2010, 15:53
I know - it's variable reference. Still, you can use the normal method.
pawn Код:
new myVar;
public something()
{
myVar = GetPlayerInterior(playerid);
}
// His method
new myVar;
public something()
{
GetPlayerInt(playerid, myVar);
}