SA-MP Forums Archive
have problem please help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: have problem please help (/showthread.php?tid=153487)



have problem please help - eriknagel - 09.06.2010

please how to use this script http://forum.sa-mp.com/index.php?topic=72182.0
i need to run multiple filterscripts becouse one script that i have dont start becouse it is to many of them please answer fast thanks on replays sorry for being noob just started a server


Re: have problem please help - DJDhan - 09.06.2010

Gratz you just bumped a 2 year old topic. And yeah, how many FS's do you include? Which one doesn't load or work?

NO CODE, NO HELP.


Re: have problem please help - eriknagel - 09.06.2010

all this are i try to run
gAdmin carmod stunt parkpacks stuntparksteles Karttrack MW2WB base gl_actions gl_property gl_realtime AD
works all the way inclusive karttrack not the rest
what code ґs are you want??


Re: have problem please help - DJDhan - 09.06.2010

Pff, I guess you should post the problem in your Language section or use ****** Translate.

Which ones do not work? Try merging them with your gamemode.


Re: have problem please help - eriknagel - 09.06.2010


(gAdmin carmod stunt parkpacks stuntparksteles Karttrack)=works (MW2WB base gl_actions gl_property gl_realtime AD)=not working




Re: have problem please help - DJDhan - 09.06.2010

Did you try removing the working ones and then check if the "not working ones" work?


Re: have problem please help - eriknagel - 09.06.2010

yes all are working fine but when i add more i got error and i checked so it dont crashes whit another commands and so on but the last 5 i added if i put in another order the 6 first is all that works i heard that it support 12 filterscripts but i cant get it to work sry for bad eng but i failed totaly in that lang:P


Re: have problem please help - DJDhan - 09.06.2010

Like I said before :

Quote:
Originally Posted by DJDhan
Try merging them with your gamemode.



Re: have problem please help - eriknagel - 09.06.2010

how do i do that? i am totaly noob att this first server in gta


Re: have problem please help - DJDhan - 09.06.2010

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.