Search Results
Quote: Originally Posted by Cr0heart We want democracy not tyranny! lol I hate to be the one delivering bad news but the rights to "democracy" don't extend to privately owned websites.
280,458
The best defence against cheaters is an active moderation/admin team, the size of which depends on the server and number of players. The gamemode should of course have aids to the team, such as warnin...
280,458
Quote: Originally Posted by Chavan Is that Beta? Respect! Quote: Originally Posted by willttoonn ... That looks great! Really creative use of DL for sure. I really li...
280,458
Quote: Originally Posted by Kalcor I've lost ls-rp, crazybob's, gamerx, partyserver, rc-rp. I wouldn't get too excited about any new release. Well, it seems that's not entirely true in ...
280,458
Forgive me if I am misremembering but I think I saw someone post somewhere recently that they wouldn’t want to see the DL branch go into the main development branch because some people wouldn’t wa...
280,458
You need to include zcmd under a_samp. https://sampforum.blast.hk/showthread.php?tid=91354 Put zcmd.inc inside your include folder, which is found under the pawno folder. Code: #include <zcmd>
592
Is your command in its own filterscript? I assume it is based on the filterscript define at the top of your code. Do you have the filterscript in your server.cfg? If it's not loaded then the command w...
820
"idx" isn't a string. So it just needs to be "new idx;". Code: public OnPlayerCommandText(playerid, cmdtext[]) { if(strcmp(cmdtext, "/veh", true) == 0) { new String[128]; ne...
820
Quote: Originally Posted by TheArcher 2 tabs of SA-MP and 1 of twitch = 970MB RAM. Interesting. I am using roughly the same as you (within 200MB) and I have a twitch video playing, and ...
8,051
Are your includes updated to the latest versions? (0.3.7 or 0.3.DL which ever one you're using).
746
There's an additional 3 floating number parameters. https://sampwiki.blast.hk/wiki/OnUnoccupiedVehicleUpdate Код: public OnUnoccupiedVehicleUpdate(vehicleid, playerid, passenger_seat, Float:new_...
746
You're missing a ) at the end of the sscanf line. EDIT: Also your command line is missing the parameters. Код: CMD:enemyandhisfriend(playerid, params[])
969
It won't work as intended. All that solution does is get rid of the compilation error. There's no functionality there. As I said in a previous reply the functionality is from: https://sampforum.blast...
1,265
I didn't say remove the sscanf include, or edit it. I said to remove the sscanf definition from your gamemode file. If you have the PAWN version in your script it'll look something like this: https://...
1,092
That means you have sscanf defined somewhere else in your code. Removing it should fix that issue, since sscanf2 is far superior to the PAWN version.
1,092
This is fixed in the updated compiler: https://github.com/pawn-lang/compiler/releases
1,092
This has been a known issue for years, it's probably something within your code. Quote: Originally Posted by Kalcor This problem shouldn't happen unless there is something wrong with your...
527
Quote: Originally Posted by KinderClans Thank you very much P.S You can also use: pawn Код: if (newkeys & KEY_YES) Instead of pressed, works too. While it might work, it is...
949
The error means that you're using a function you haven't defined in the code. In this case "SetDialogPreviewRotation". That function comes from this include. Quote: Originally Posted by DeM...
1,265
Using OnPlayerKeyStateChange this can be a simple task. Код: // PRESSED(keys) #define PRESSED(%0) \ (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0))) public OnPlayerKe...
949