Is that possible?
#1

Is there any way how to connect Gamemode with Filterscript?
Reply
#2

if u mean tramsfer information from GM to FS and vice-versa then yes it is possible
go to https://sampwiki.blast.hk/wiki/Per-player_variable_system
Reply
#3

You need CallRemoteFunction();

From gamemode use
pawn Код:
if(CallRemoteFunction("Callback","i",playerid) == 1)
{
//Variable from FS is 1;
}

and in FS it would be

pawn Код:
public Callback(playerid)
{
return VariableFromFS[playerid];
}
Reply
#4

Use includes instead..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)