Search Results
So why are sending the playerid when you are checking all players anyway? Replace playerid with i and don't send it as its not need.
67
So you want the map icons to more or less only show up when your near them rather than have them all show up all the time? If this is what you were asking, use MAPICON_LOCAL rather than MAPICON_GLOBA...
120
Well this is not a place for I want rather I need help. There is a script request thread where you can request scripts to be made. I will help you if you want to learn by trying to do it yourself and ...
169
What part do you not know how to do? Making the label, Attaching the label, making a command, using the parameter variable, or all of the above?
169
the listitem ids correspond to the order in which the list is in. "item 0\nitem 1\nitem 2\nitem 3" item 0 = listitem 0 item 1 = listitem 1 ...
115
https://sampwiki.blast.hk/wiki/Strmid https://sampwiki.blast.hk/wiki/Strfind or you can use sscanf
105
Do read what he posted, because those decoders don't decode it rather check the hash against a sql db full of hashes and answers. so by salting you are guaranteeing it to not be in any db. I have mine...
174
A) Calling people names is not going to get them to help you. Grow up. B) We can't help you if you don't tell us were the error is.
76
considering you are being spammed with sscanf, try installing sscanf or updating it...
127
you have to use RGB color codes {rrggbb} pawn Код: #define COLOR_BLUE "{0000ff}"SendClientMessage(playerid, -1, "change the color to"COLOR_BLUE" right now");
110
I think that has to do with the objects "actual" draw distance. The draw distance that you tell the streamer to use is used to stream the object in that radius but some objects have their own draw dis...
239
well you need to remove pawn Код: new pgate = CreateObject(2933,1717.0000000,1308.0000000,11.5000000,0.0000000,0.0000000,90.0000000); from your parkinglot command and close function as it is alre...
151
Quote: Originally Posted by Jefff You can't use sizeof like that with enums, replace sizeof(user_login_info[%0][user_password]) to MAX_USER_HASHED_PASSWORD Really? I swear it did before...
78
"\n" is not a null character its a new line character. The null character is "\0" which represent end of string. you do not need to add this as its done automatically, but you need to make sure your a...
83
That is because you are creating a new object every time you open and close the gate. put pawn Код: new pgate; somewhere at the top of script so its a global variable, and then put pawn Код:...
151
The errors are as follow: Код: \System\SQL\sql_user.inc(142) : error 001: expected token: "]", but found "-identifier-" \System\SQL\sql_user.inc(142) : warning 215: expression has no effect \Syste...
78
I noticed while looking you are assigning text incorrectly too TicketInfo[playerid][query]. Use pawn Код: strcat(TicketInfo[playerid][query], text); or pawn Код: format(TicketInfo[playerid][...
137
could I see your pawn Код: OnPlayerCommandReceived(playerid, cmdtext[])OnPlayerCommandPerformed(playerid, cmdtext[], success) callback code? that or one of you SendClientMessage is returning 0 in...
137
Quote: Originally Posted by Nathan_Taylor Well I know returning 0 gives you that message. But I didn't return 0 anywhere sorry but I edited the post right when you posted. What command ...
137
Quote: Originally Posted by Nathan_Taylor it is on the line above the line you added, does it make a difference? no, you are returning 0 somewhere which is causing the Server Unknown Co...
137