Search Results
Quote:
Originally Posted by Hazon
Even some people say this feature was removed before GTASA was released.
I've heard about this one too.
Anyway, I'm currently using two pickups becaus...
1,253
It's the gl_property filterscript that comes with the server package. Unload or delete it
192
Post code. Are you sure they aren't disabled?
127
Do you have this
Код:
main() {}
Make sure you put /* after the includes.
335
Class IDs start from 0
https://sampwiki.blast.hk/wiki/AddPlayerClass
172
If the team color is the same as player's color you can take a look at this:
https://sampwiki.blast.hk/wiki/Color_li...GetPlayerColor
Your code should look like:
Код:
format(String, sizeof(String...
272
Quote:
Originally Posted by Swarn
What vehicles was you adding sirens too then? Because it doesn't miraculously change. Does the BF Injection even have a horn to begin with?
Model ID 58...
636
You could try
return return cmd_kill(playerid, "");
You can also take a look at this post
187
I've optimized the command for you:
pawn Код:
CMD:tow(playerid, params[]){ new Float:pX, Float:pY, Float:pZ, Float:vX,Float:vY,Float:vZ, Found, vid; if(!IsPlayerConnected(playerid)) retu...
211
Quote:
Originally Posted by Hammad123
Defining color I guess? Have I used it wrong here?
Assist me friend - Do I have to add -1 instead of COLOR_WHITE?
Yes, it's the same and shorter
488
OnDialogResponse:
pawn Код:
if(dialogid == 8585){ if(!response) // When player clicks ESC or second dialog button { ShowPlayerDialog(playerid, 8585, DIALOG_STYLE_LIST, "Lotfan...
158
So..
I'm having stadiums IDs 1, 2, 3 and 5. ID 4 is missing but that's ok.
pawn Код:
CMD:stadiums(playerid, params[]){ new StadiumList[500]; for (new StadiumID = 1; StadiumID < MAX_S...
248