Search Results
Learn MYSQL instead of asking the SAMP Community to do all the work for you like 8/10 of your posts are.
60
Quote: Originally Posted by Riddy Just made me laugh. 3/4 of the SA-MP playerbase are under 18 and arent even ready to start a life for themselves, so you really think that they play Rolep...
301
NEVER join RP servers. They are plagued with snobby elitist people who couldn't cut it in the real world, so they waste their lives in a virtual one where they at least have some sort of status above ...
301
You should just ditch this and rewrite a new anti cheat system from scratch by yourself. The stock ravens AC is just a mess. We ended up writing our own on my server. No spam, and it works better.
159
Instead of using SQLite. I might suggest BUD by Slice. It uses SQLite but is A LOT easier. Include: https://sampforum.blast.hk/showthread.php?tid=187720 Tutorial: https://sampforum.blast.hk/showthre...
154
pawn Код: SetPlayerCheckpoint(playerid,1529.5492,-1674.8779,13.3828,268.7893); This looks to be the problem dude. Looks like you set the X,Y,Z, and Angle Proper Usage: pawn Код: SetPlayerChe...
72
pawn Код: ApplyAnimation(playerid,"CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
65
https://sampforum.blast.hk/showthread.php?tid=390428 << there is this. http://forum.sa-mp.com/showthread.ph...ghlight=Vortex << Vortex II is good too. hope these help.
146
Can you show us the code you're working with?
215
Are you setting the PlayerInfo[playerid][pInteriorNr] or are you using SetPlayerInterior(playerid, INT);?
215
The faction system in Raven's is poop. The /fcreate command is broken in the stock version. Most of the factions are coded into the script, so you'll need to do it that way. Unless you find somethin...
69
you had an extra bracket Try this pawn Код: CMD:windows(playerid, params[]){    if(IsPlayerConnected(playerid))    {        if(IsPlayerInAnyVehicle(playerid))        {          ...
252
Missing Brackets pawn Код: if(strcmp(cmd, "/robbank", true) == 0)//Alexander{    if(IsPlayerConnected(playerid))    {        if(robbing[playerid] == 1)        {            SetPl...
74
Try something like this. pawn Код: #include<a_samp>new       TabTimer[MAX_PLAYERS],      Tabbed[MAX_PLAYERS];public OnPlayerConnect(playerid){     Tabbed[playerid] = 0;     ret...
133
If I might make a suggestion. Instead of using this in OnPlayerUpdate, why not make it so when they enter the checkpoint it checks for these things? I have something similar in my script, and have ...
117
Quote: Originally Posted by DrTHE The variable to be checked playertextid, must be different variable in the switch. Yeah, you\'re right, I goofed in my example. hehe. Sorry, and thank...
322
Your best bet would be to make a new clickable textdraw to move the camera pawn Code: if(playertextid == RotateCamTD[playerid])         {            switch(CameraRotate[playerid])       ...
322
is it strcmp, dcmd, or ZCMD command. Post the code if you could.
80
My Server has been getting attacked a lot recently. We generally stop the attacks within an hour or so, however, they do happen day to day now. They dont full on DDOS us, but apparently flood the spe...
1,574
We were having a bit of a CPU load issue with our server. This helped A LOT. Thank you so much for sharing this info! rep ++
314