Search Results
Sorry, but I can't understand what you're saying. If you want to check money only in specific listitems, simply move that line of code inside it. Edit: I don't think that is possible. However, you c...
91
I would recommend you this include for creating dialogs much simpler: https://sampforum.blast.hk/showthread.php?tid=475838 Also, checking for client-side money is a very bad idea, use server-sided. El...
91
PHP код: CMD:buy(playerid,params[]) {     new count;     for(new i = 0; i < MAX_HOUSES;i++)//Loop threw all houses.     {         if(IsPlayerInRangeOfPoint(play...
66
PHP код: // OnGameModeInit mysql_tquery(dbHandle, "SELECT * FROM `houses`;", "OnhousesLoad", ""); forward OnhousesLoad(); public OnhousesLoad() {     new rows = cache_num_rows(...
73
Move SendClientMessage(i, -1, str); one tab left
250
It could be a disable option for messages or something similar. Anyways.. PHP код: #define BOT_NAME "YourBotName" public DCC_OnChannelMessage(DCC_Channel:channel, DCC_User:author, constÂ...
250
An example how to disable bot messages: PHP код: #define BOT_NAME "YourBotName" public DCC_OnChannelMessage(DCC_Channel:channel, DCC_User:author, const message[]) {     new channe...
250
Have a look at this plugin: https://sampforum.blast.hk/showthread.php?tid=249226. It'll tell you what plugin is missing from your server.
129
If you're gonna host a small server, you might look for Dini, y_ini and similar but they aren't even meant to be used as saving but configuration file. MySQL is a best choice. It is not as much hard ...
168
PHP Code: // :: MySQL Database #define MYSQL_HOST                 "localhost" #define MYSQL_USER                 "root" #define MYSQL_PASS         ...
63
Here: https://sampforum.blast.hk/showthread.php?tid=27598
63
Update the name in database, not just server.
159
https://sampforum.blast.hk/showthread.php?tid=654813 How is that done?
84
Wron section, post here: https://sampforum.blast.hk/showthread.php?tid=447813
110
Quote: Originally Posted by Verc https://github.com/urShadow/Pawn.RakNet/releases Thank you very much.
144
Quote: Originally Posted by Verc Yes,samp-compat. https://sampforum.blast.hk/showthread.php?tid=652917 The download link for 0.3.7 compat is broken! Mirrors? https://github.com/AGraber/...
144
Is it by any way possible to allow connections from both 0.3.7 and 0.3DL clients on 0.3DL server?
144
Here you go. PHP Code: CMD<ALL>:stats(cmdid, playerid, params[]) {     new targetid, string[128];     if(sscanf(params, "u", targetid)) targetid = playerid;     if(!IsP...
168
Hello, I m experiencing problem while trying to divide UserStats[targetid][WeaponHitsOP] with UserStats[targetid][MissedWeaponHits] PHP Code:     format(string, sizeof(string), "{FF0000}[ST...
168