Search Results
I didn't really understand what you are saying but as I understand you want the second listitem to show players name? Then you don't have to use inputtext, because inputtext is just from DIALOG_STYLE_...
231
Quote: Originally Posted by NewFreeroamStunt Thanks mate! Give full pack file Rar link download please.. I didn't provide full server link because many users don't like downloading anyt...
1,210
Can you show us you OnGameModeInit?
130
Saved with that encoding, still same messed up characters.
672
>>> view.encoding() 'Central European (Windows 1250)'
672
Still not working. It shows the special characters kinda weird, but I could get used to it. The problem is it shows character 'ā' like 'в', bet when I type in a special character, it shows up as 'ā...
672
I'm using Sublime Text 3 to code, as I find it very easy to use, nice syntax and many useful features. The only problem is that I can't code in my native language. It's hard for me to explain it, but ...
672
How is the playerName obtained? Is it a variable or a function. If it is a function, it should be playerName(playerid). Don't know about the other one, havan't used streamer plugin that much.
101
Why aren't you using sscanf?
196
Код: public OnPlayerClickPlayer(playerid, clickedplayerid, source) { if(!IsPlayerConnected(clickedplayerid)) return SendClientMessage(playerid, -1, "Player not online!"); if(clickedplayerid == p...
196
You have to specify how you want to give it. Just by double-clicking player, and giving him 100k, or maybe showing a dialog asking how much do you want to give?
196
Yes, all the players will see the message. Код: CMD:wb(playerid,params[]) { new string[128]; format(string, sizeof string, "[%d] %s: {0000FF}Welcome {FF0000}Back!", playerid, pName(player...
160
I don't think you can do that. At least I don't know how to. You can just replace OnPlayerText with the example above and add pName(playerid) function anywhere in the script.
160
Код: pName(playerid) { new name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name); return name; } public OnPlayerText(playerid, text[]) { new string[128]; format(string, siz...
160
Any warnings when compiling? And I think they should return 1; Like this: Код: CMD:wb(playerid,params[]) { SendPlayerMessageToAll(playerid, "{0000FF}Welcome {FF0000}Back!"); return 1; } ...
160
So, I've been wondering, how many includes I can have in gamemode. While browsing includes section, I've found so many good includes, but will too many includes be bad for performance? Let's say that ...
511