have problem please help
#10

Like, if you have some functions in your FS, the majority of the callbacks are in the GM too.

For eg:

In your FS you have :
Код:
OnPlayerConnect(playerid)
{
  SendClientMessage(playerid,0xffffffaa,Welcome!!);
  return 1;
}
And then in your GM you have :

Код:
OnPlayerConnect(playerid)
{
  SendClientMessage(playerid,0xffffffaa,Remember always to follow the rules Type /rules for more info");
  return 1;
}
Then you can merge them like this in your GM:

Код:
OnPlayerConnect(playerid)
{
   SendClientMessage(playerid,0xffffffaa,Welcome!!);
   SendClientMessage(playerid,0xffffffaa,Remember always to follow the rules Type /rules for more info");
   return 1;
}
Get it? OnPlayerConnect stuff from your FS goes to OnPlayerConnect in your GM
and so on.
Reply


Messages In This Thread
have problem please help - by eriknagel - 09.06.2010, 08:37
Re: have problem please help - by DJDhan - 09.06.2010, 09:06
Re: have problem please help - by eriknagel - 09.06.2010, 09:10
Re: have problem please help - by DJDhan - 09.06.2010, 09:15
Re: have problem please help - by eriknagel - 09.06.2010, 09:20
Re: have problem please help - by DJDhan - 09.06.2010, 09:22
Re: have problem please help - by eriknagel - 09.06.2010, 09:26
Re: have problem please help - by DJDhan - 09.06.2010, 09:34
Re: have problem please help - by eriknagel - 09.06.2010, 09:36
Re: have problem please help - by DJDhan - 09.06.2010, 11:02

Forum Jump:


Users browsing this thread: 1 Guest(s)