Search Results
Could someone please tell me how to add people to factions? I have this GM on my test server and I have some friends testing it to get some ideas for my own server Please answer ASAP, thank you!
18,190
The maximum characters the SA:MP chat can output is 128 or 256 I think.
113
Never mind, this has been fixed. Thread can be locked.
142
Make sure that you don't have more than one server folder. If you have another pawno folder, it can conflict.
105
Nope, I forgot to add them to the topic. The forwards are there. I don't use filterscripts, everything runs from the gamemode but the dialogs aren't work still. Edit: I have edited the first post.
142
Me and my friend have made this Anti AFK sytem but it doesn't seem to show the dialog. Here is the code: pawn Код: /*Declared New*/new AFK_Timer[MAX_PLAYERS];new AFK_Kick_S[MAX_PLAYERS];new acs...
142
Thanks Stront, one reputation from me
236
Thank you for the quick response. Could you walk me through on how to do that ? I tried using a boolean value but that wasn't successful
236
Hi, I need a little help with my radio system. Is there a function I can use to detect if an audio stream is playing ? I have the command /stopradio - This can be used even when there is no audio s...
236
Show the command that you are receiving the error on. You can't expect us to help you if you don't show your problem.
144
You haven't returned the command so it gives the SERVER: Unknown Command. pawn Код: if(strcmp("/zivot", cmdtext) == 0){     SetPlayerHealth(playerid,100); // Nastavi zivot na 100     SendC...
95
Your plugins are either out of date or you are missing the "main() { }".
102
Try using this: pawn Код: CMD:kick(playerid, params[]){    new string[128];    new reason[128];    new id;    if(sscanf(params, "us[128]", id, reason)) return SendClientMessage(playerid, ...
108
Would be more efficient to use enums instead of defining them as variables. Something like this: pawn Код: enum pInfo{    pScore,    pKills,    pDeaths}new PlayerInfo[MAX_PLAYERS][pInfo]; ...
81
Hi, I have added you on Skype to try and help you resolve this issue. Kind regards, Sean - sniperwars
127
For things like this, I think you need to use the OnPlayerUpdate callback to actually remove the player from the vehicle. Not sure if this code works as it is untested. Test it and let me know! pawn...
156
Wow, nice gamemode man. Keep up the good work!
661
To make the that textdraw update, you need a function to get the vehicle's speed and make sure it updates the textdraw with a timer. I'm not sure if I am 100% right about this. If I am wrong, someone ...
196
The error line was: pawn Код: COMMAND:opensdgate(playerid) This line should be: pawn Код: COMMAND:opensdgate(playerid, params[]) So you can try this: pawn Код: COMMAND:opensdgate(play...
136