Search Results
You just forgot to call INI_SetTag in the command
114
Use the $_SERVER superglobal (See: http://php.net/manual/en/reserved.variables.server.php)
143
INI_WriteInt, as it's name says, is for saving integer values, however, you are trying to save a string, that's why it's giving you error. Use INI_WriteString instead
131
Try crashdetect, remember to recompile your script with debug flags for detailed information
353
If you have the IP AND the Hostname in favourite tab, then the SA-MP client will only update the information of the first server in the list. Remove the IP from the list and see if querying the one wi...
100
Quote: Originally Posted by BlackRaven pawn Код: command(once, playerid, params[]){    new pressed = false;    if(pressed == false)    {        pressed = true;        // ...
119
You placed your if statement in the wrong order pawn Код: if(GetPVarInt(playerid, "DepositingMoney") == 1)    {        new b = GetPVarInt(playerid, "BankIDSlot");        if(IsNumeric(t...
56
PAWN is case-sensitive, Float: and float: are 2 different tags, that's why the compiler is giving you a warning. Also, you are using GetPlayerHealth and GetPlayerArmour in a wrong way, those natives d...
64
There is a filterscript that does this, check: https://sampforum.blast.hk/showthread.php?tid=179089
93
https://sampforum.blast.hk/showthread.php?tid=345747
113
pawncc + libpawnc.so, compilados en Ubuntu 12.10 usando el sourcecode que esta en compuphase y los parches de Zeex (https://github.com/Zeex/pawn-3.2.3664_patches)
104
Try using the native IsValidVehicle: pawn Код: native IsValidVehicle(vehicleid); // It works, but it's not in the includes for some reason (https://sampwiki.blast.hk/wiki/IsValidVehicle)public On...
97
Remove the spaces in the first part of the #define: pawn Код: #define CreateVehicleInWorld(%1,%2,%3,%4,%5,%6,%7,%8) SetVehicleVirtualWorld(CreateVehicle(%1, %2, %3, %4, %5, %6, %7), %8) More inf...
145
Update your includes: Download the latest server package from www.sa-mp.com/download and extract the "Pawno" folder to your server's directory. Also make sure that you are opening the Pawno that has t...
175
Update streamer plugin: https://sampforum.blast.hk/showthread.php?tid=102865
175
Intenta con TogglePlayerSpectating en el mismo OnPlayerRequestClass
124
You are doing it wrong... For this you will need 1 textdraw for each player, use CreatePlayerTextDraw like in the following code, or else everything will mix up: pawn Код: new PlayerText:pKills[M...
184
https://sampforum.blast.hk/showthread.php?tid=272605
77