Search Results
If you're sure he's using software to crash your server there's not much you can do but ban him.
163
It doesn't work that way. The script you ran when it was working is not the same as your script when it's not. There might have been some data corruption, although it is more probable that you've just...
137
You can't change the port of an application while it's already initiated on another, you'd have to restart it. And no, there's no RCON command for it.
124
Added download links, I wanted to make sure it would work before I released it.
350
Simple radio dialog v1.0 By Lenny Features A simple radio dialog to play your favorite radio stations. Requirements Nothing! It is compiled with zCMD for high compability and userfriendlyness. How t...
350
Car bombs v1.0 By Lenny Features Four different types of car bombs: IGNITION - Activates the bomb timer after the vehicle's ignition is activated. TIMER - Immediately activates the bomb timer. SPEED...
267
Quote: Originally Posted by Prio Sure it is because the Mysql plugin is the reason. No, the plugin has nothing to do with your compiler. You've probably forgot to close something, check...
95,253
You can't have anything between pawn Код: if(something){    blabla;}// HEREelse{    blabla;} Edit: I just think you have an unintentional } in there: pawn Код: if(PlayerInfo[playerid][pAdm...
78
I seriously doubt that your host address is "HOST", username is "USER" and DB name is "DB NAME". You have to configure the connection details in your script.
172
You have provided an invalid username or password to the MySQL server.
172
I was trying to do this and I had to create the directory lib32 because it didn't exist. I moved the (4) files and the next thing I knew, lib32 contains all of this: Код: Mcrt1.o ...
95,253
I was trying to do this and I had to create the directory lib32 because it didn't exist. I moved the (4) files and the next thing I knew, lib32 contains all of this: Код: Mcrt1.o ...
429
Have you tried deleting your gta.set file in the Documents -> GTA San Andreas Userfiles folder?
172
pawn Код: new randomvalue[3]={Weed,Crack,Canabis}; has to be pawn Код: new randomvalue[3]={DrugType[playerid][Weed], DrugType[playerid][Crack], DrugType[playerid][Canabis]};
147
Look in this section: http://forum.sa-mp.com/forumdisplay.php?f=17 Here is one filterscript for you: https://sampforum.blast.hk/showthread.php?tid=279029
195
random returns a number between 0 and the number you put inside the function. You can do a switch(random(1) if you want.
182