26.07.2014, 06:57
pawn Код:
forward GetSomething( playerid )
public GetSomething( playerid )
{
return YourVariable;
}
// in your filterscript
new SomeVariable = CallRemoteFunction( "GetSomething", "i", playerid );
// now SomeVariable will hold the result of that function.