Search Results
Quote: Originally Posted by iLearner Simple, got some teams, but sometimes they get overloaded, which means some teams have alot of players in it while other a few, so i was trying to make...
221
Quote: Originally Posted by XBoss30 I want my command to show only the admin level you are, Example: I'm level 7 admin and when I do /acmds It should only show me the dialog of Admin lvl 7...
149
Quote: Originally Posted by Vince If you're going to use Hungarian notation then at least be consistent. Either use it everywhere or nowhere. Preferably the latter. Systems Hungarian is re...
308
Quote: Originally Posted by Micko123 Code: Tutorials A place where you can post tutorials related to sa-mp scripts. TUTORIAL.. This should be posted in Filterscript section or here if you...
308
Sup, not going to get into too much detail with this. I made this in about 45 minutes, you can edit it to your liking. If my scripting is bad, sorry, I don't even code in pawno, I just did this for fu...
308
havn't read through all your code but i already see a problem here Код: if(issuerid != INVALID_PLAYER_ID || bodypart == 9) //head { you're commenting out the bracket '{'
76
Quote: Originally Posted by iWindows i'm trying but i don't thing that enough rsrs i'm a begginer divide
184
try Код: if(dialogid == DIALOG_SPAWN) { if(response) { switch(listitem) { case 0: { if(GetPlayerScor...
78
havnt looked over ur entire code, but why are you doing this lol Код: if(!strcmp(VehicleNumberPlate[id], PlayerInfo[playerid][pPlate1]) == 0) ur checking if theyre not equal, if thats intended why...
175
idk.. why not make a bool? example Код: new Bool:bIsLogged[MAX_PLAYERS]; OnPlayerConnect( playerid ) // or w/e { bIsLogged[playerid] = false; } // then when they login bIsLogged[playerid] = tru...
181
hes talking about this Код: stock GetPlayerTheoreticAngle(playerid) should be Код: stock Float:GetPlayerTheoreticAngle(playerid) or w/e
126
Idk why youre using pragma.. theres no need for it there. anyway, work on this, im not sure if it was what u asked for Код: YCMD:fam(playerid,params[],help) { new player, string[144], pName[MAX...
61
until sa-mp ups its anticheat i dont really think there will be a fix for it. all theyre doing is NOPing 3 bytes
102
psuedo Код: stock GetXYInFrontOfPlayer(playerid, &Float:x, &Float:y, Float:distance) { // Created by ****** new Float:a; GetPlayerPos(playerid, x, y, a); GetPlayerFacingAngle(playeri...
173
Код: Line that has Error:(5076) if(newkeys & KEY_YES) IsPlayerInAnyVehicle(playerid) && GetPlayerState(playerid) == PLAYER_STATE_DRIVER) ...can you even put in a little effort yourself...
80
lmao do you mean like "black" and then getting black in hex? dont bother
91
you copypasted something and it didnt work..? post Sendnearbymessage func
69
Код: forward OnPlayerCBug(playerid); public OnPlayerCBug(playerid) { new playername[MAX_PLAYER_NAME]; GetPlayerName(playerid, playername, sizeof(playername)); CheckCrouch[p...
76
Quote: Originally Posted by AIped No this is not what i am trying to ask. I dont need a command i need to know how i can reset the last value in a specific line in a FILE that is created i...
174
somethin like this? Код: COMMAND:setprice(playerid, params[]) { new signID, price; if(sscanf(params, "ui", signID, price)) return SendClientMessage(playerid, -1, "USAGE: /setprice [house...
174