Search Results
Agreed. However, on the case of whether or not Incognito's Streamer or ZCMD should be included in the sever package is really, in my opinion, a far cry out. Both were not developed by the SA:MP Team s...
893
Quote: Originally Posted by Gangster-rocks If he didn't that wound give him an other error. like that Код: warning 235: public function lacks forward declaration (symbol "vdav") Pr...
152
You need to forward it correctly. pawn Код: forward TutorialLoop(playerid); // Placed above your callback, or more preferably, in the top portion of your script. I'm assuming you didn't...
152
Quote: Originally Posted by TH3_R3D™ nvm, I solved the problem What is the solution? This can be used as a reference for others who may experience this problem in the future.
91
Quote: Originally Posted by Bicentric I agree, it does look quite awesome! I still use Sublime Text 2 right now, maybe when PAWNit does come out I may switch, but I wanna test it out first...
1,539
You would need to loop through all the players. https://sampwiki.blast.hk/wiki/Loops Better yet, just use foreach, it's much faster looping through players.
135
Most likely you have set the player's world boundaries in your script. Remove that, or if you would like to keep it, read this: https://sampwiki.blast.hk/wiki/SetPlayerWorldBounds
97
I currently use Notepad++ but I can guarantee you, I will be switching to PAWNit when and if it is released. I mean, look at it!
1,539
I would imagine setting a timer to repeat every second, and under the callback, with the amount of seconds the player put in, you would subtract a second. Then, you would create the textdraw with the ...
64
Have you tried using the crashdetection plugin? https://sampforum.blast.hk/showthread.php?tid=262796
156
Quote: Originally Posted by VincentDunn Keep in mind, strcmp returns 0 if the strings match. So to check if the strings don't match you would do pawn Код: if(strcmp(save3, GetName(play...
102
You cannot use <a_npc> and <a_samp> in the same script. You would have to create a separate script (placed in npcmodes as said above) if you want to use <a_npc>.
110
Quote: Originally Posted by viktor26 How can i access the trash section ? ( i really can't find any pilot gamemodes.. ) And thank you all for your reply's. You can't.
127
pawn Код: GameTextForPlayer(playerid, string, 3000, 1); 3000 is the time it shows in milliseconds. 6000 is how many milliseconds are in a minute. For the second code you posted, to send it to the...
99
pawn Код: SendRconCommand("hostname [name]"); https://sampwiki.blast.hk/wiki/Advanced_...#RCON_Commands
227
Make sure that you have the latest a_samp include (download the latest server package).
58
I've been trying compare the query result to the player's name, however, the if statement keeps on getting called when it only supposed to be called if the player's name doesn't match the name fetched...
102