Search Results
Are you sure they don't work? Are you using the function in the correct way?
87
Not possible. You need the .pwn file. You can decompile it, but that's a bit complicated. Look for DeAMX.
63
Quote: Originally Posted by Marcel You don't have to use ' if you're setting numbers. You can just do: Code: SET Int = 6, Vir = 0 etc. ....
169
Change the \ to a space or something.
77
You don't have to use ' if you're setting numbers. You can just do: Code: SET Int = 6, Vir = 0 etc.
169
What kind of filterscript do you want? There is a complete section for filterscripts on the forum. Look over there.
126
Are you sure you have the plugin called in the server.cfg file?
161
pawn Code: forward HappyH();public OnGameModeInit (){SetTimer("HappyH",240000,true);return 1;}new const ValidWeapons[22][2] ={    {22, 200}, //9mm    {23, 150},//9mmsilenced    {24, 100},//DEag...
110
GetPlayerFacingAngle? https://sampwiki.blast.hk/wiki/GetPlayerFacingAngle And: https://sampwiki.blast.hk/wiki/GetPlayerCameraFrontVector
225
Yes, but replace WEAPONSKILL_SAWNOFF_SHOTGUN for these: https://sampwiki.blast.hk/wiki/Skillweapons
361
No, it sets the skill level of the sawnoff shotgun to 1. Meaning they can only hold 1 shotgun. Use GivePlayerWeapon to give someone a weapon.
361
What is in the 'color' field in the MySQL table?
164
pawn Код: public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger){    new pName[MAX_PLAYER_NAME];    GetPlayerName (playerid, pName, sizeof (pName));    if (strcmp (Carlist[playerid][o...
108
pawn Код: if (playerid == 2 || playerid == 5 || playerid == 8 || playerid == 11 || playerid == 15 || playerid == 18 ){        SetPlayerTeam (playerid, 1);}else{        SetPlayerTeam (playe...
70
Get the name of the one who is entering the vehicle (OnPlayerEnterVehicle) and compare it to Carlist[playerid][owner].
108
Show us the declaration of FactionDetails[fColor].
164
https://sampforum.blast.hk/showthread.php?tid=145210
203