Search Results
pawn Код: CMD:level1(playerid,params[]){    #pragma unused params    new PT[1900];    if(PlayerInfo[playerid][Level] > 0)    {        if(PlayerInfo[playerid][Level] >= 1)     ...
89
You do know you have to release the source code along with your release right? Other than that, good job.
199
pawn Код: UPDATE profiles SET `Test` = '0'
100
It's great, I mean there's snippits here and there for similar functions, but it's nice to see something small and useful, it'll be a great aid to a lot of people and save a little time, although like...
240
Konstantinos method was correct. Most of the above check if they're leader and on duty or just a member.
78
You might be interested in this: [INC] Progress Bar
49
Quote: Originally Posted by Hade. I have those under OnPlayerDisconnect You're right, those should be made into a separate function and saved upon OnPlayerDisconnect or on a reasonable ...
94
Matnix, how is your code going to work if you're detecting if they're an RCON admin upon connecting? They don't have any time at all to actually log into RCON if that's used upon OnPlayerConnect.
117
Volt Host doesn't work the same way as localhost phpmyadmin. Their databases you have to setup (on the main server portal page) which gives it a predefined parental (yours would be 11071_) so try conn...
110
The issue is you're setting the variables (on saving) to the variables of PlayerInfo[playerid][Money] (which is reset to 0 on OnPlayerConnect), but I don't think you're changing the variables e.g unde...
94
That's due to the fact that the interiors are mapped over those locations, I suppose you could modify the include / filterscript to detect whether the players interior (GetPlayerInterior) is equal to ...
104
Like Eyce said, you can embed colour codes in RRGGBB format by wrapping them in { }. http://www.rapidtables.com/web/color/RGB_Color.htm http://antipas.net/cd/colors.htm These two websites are wonder...
95
You would want to look into OnPlayerDeath to process the first two requests. As for the final one, that is relatively simple. pawn Код: // Toward the top of your script.new UsedKit[MAX_PLAYERS];/...
61
Quote: Originally Posted by juanrivas Is it a new VPS? If so install Microsoft Visual C++ 2008 This is clearly hosted on Volt Host, by Dedicated he means the statement within the consol...
103
Try loading the filterscripts from the Gamemode, I suppose there could be issues reading the server.cfg: pawn Код: SendRconCommand("loadfs fsname"); Put those under OnGameModeInit().
159
Quote: Originally Posted by Vince Actually say what you changed and why, instead of just posting some code. How is he supposed to learn if he doesn't/didn't know what he did wrong? He i...
85
pawn Код: forward CheckPlayer(playerid);public CheckPlayer(playerid){    new string[256], PlayerName[MAX_PLAYER_NAME], EscapedName[MAX_PLAYER_NAME];    GetPlayerName(playerid,PlayerName, sizeo...
85
I had the same problem unfortunately, the only way (theoretically) would be if there was a way of detecting the X,Y of the mouse and knowing the size of the textdraw. Hmm, who knows, for now, we're s...
94
This is just the code behind the possibilities guys, you have to implement it to work with Textdraws, Dialogs, etc, he has only made the core code (although he did hint at a future update!) OT: Good ...
359