Search Results
Are you sure they don't work? Are you using the function in the correct way?
544
Not possible. You need the .pwn file. You can decompile it, but that's a bit complicated. Look for DeAMX.
930
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. ....
936
Change the \ to a space or something.
441
You don't have to use ' if you're setting numbers. You can just do: Code: SET Int = 6, Vir = 0 etc.
936
What kind of filterscript do you want? There is a complete section for filterscripts on the forum. Look over there.
674
Are you sure you have the plugin called in the server.cfg file?
848
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...
723
GetPlayerFacingAngle? https://sampwiki.blast.hk/wiki/GetPlayerFacingAngle And: https://sampwiki.blast.hk/wiki/GetPlayerCameraFrontVector
666
Yes, but replace WEAPONSKILL_SAWNOFF_SHOTGUN for these: https://sampwiki.blast.hk/wiki/Skillweapons
1,131
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.
1,131
What is in the 'color' field in the MySQL table?
1,054
pawn Код: public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger){    new pName[MAX_PLAYER_NAME];    GetPlayerName (playerid, pName, sizeof (pName));    if (strcmp (Carlist[playerid][o...
788
pawn Код: if (playerid == 2 || playerid == 5 || playerid == 8 || playerid == 11 || playerid == 15 || playerid == 18 ){        SetPlayerTeam (playerid, 1);}else{        SetPlayerTeam (playe...
448
Get the name of the one who is entering the vehicle (OnPlayerEnterVehicle) and compare it to Carlist[playerid][owner].
788
Show us the declaration of FactionDetails[fColor].
1,054
https://sampforum.blast.hk/showthread.php?tid=145210
1,398