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...
175
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...
175
PHP код: CMD:buy(playerid,params[]) {     new count;     for(new i = 0; i < MAX_HOUSES;i++)//Loop threw all houses.     {         if(IsPlayerInRangeOfPoint(play...
117
PHP код: // OnGameModeInit mysql_tquery(dbHandle, "SELECT * FROM `houses`;", "OnhousesLoad", ""); forward OnhousesLoad(); public OnhousesLoad() {     new rows = cache_num_rows(...
120
Move SendClientMessage(i, -1, str); one tab left
387
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Â...
387
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...
387
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.
201
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 ...
249
PHP Code: // :: MySQL Database #define MYSQL_HOST                 "localhost" #define MYSQL_USER                 "root" #define MYSQL_PASS         ...
103
Here: https://sampforum.blast.hk/showthread.php?tid=27598
95
Update the name in database, not just server.
247
https://sampforum.blast.hk/showthread.php?tid=654813 How is that done?
121
Wron section, post here: https://sampforum.blast.hk/showthread.php?tid=447813
159
Quote: Originally Posted by Verc https://github.com/urShadow/Pawn.RakNet/releases Thank you very much.
208
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/...
208
Is it by any way possible to allow connections from both 0.3.7 and 0.3DL clients on 0.3DL server?
208
Here you go. PHP Code: CMD<ALL>:stats(cmdid, playerid, params[]) {     new targetid, string[128];     if(sscanf(params, "u", targetid)) targetid = playerid;     if(!IsP...
263
Hello, I m experiencing problem while trying to divide UserStats[targetid][WeaponHitsOP] with UserStats[targetid][MissedWeaponHits] PHP Code:     format(string, sizeof(string), "{FF0000}[ST...
263