Search Results
Well for start (assuming you know how to include includes) I want you to download and include these 2 includes / plugins in your gamemode.. sscanf: https://sampforum.blast.hk/showthread.php?tid=5709...
632
Quote: Originally Posted by Kasichok its not hard to understand 200 ms timer for example will end even if player quits it will end shorly after, but 1 min timer for example player will l...
240
Quote: Originally Posted by Kasichok Depends on time if its for a sec or less no need to store it in array That makes no sense to me
240
Quote: Originally Posted by Kwarde Always check SA-MP Wiki: SetTimer(Ex) returns the ID of the timer. On the same page you could have seen there's a KillTimer function. Not killing timers ...
240
Hey! I got a question about timers.. basically I'm not sure when should I use for example.. First option: Code: new timer[MAX_PLAYERS]; timer[playerid] = SetTimerEx("Test", 2000, 0, "d", playerid)...
240
Use this function Code: stock static GetVehicleName(modelid) { static vehName[30]; strunpack(vehName, VehicleNames[modelid - 400]); return vehName; }
303
PHP Code: if(Z < 0.0) return SendClientMessage(playerid, -1, "You are in water.");  Anything under 0 is in water
250
I tried it, doesnt work. Or if you can suggest me how to make dynamicobject for player and then also delete all objects that were created for this player.
137
Hey! So I have an enum made for WeaponData.. The problem is that if I add "[MAX_PLAYERS]" in variable PHP Code: new WeaponInfo[MAX_PLAYERS][MAX_WEAPONS][WeaponData];  it crashes compiler...
137
Hey! I'm just wondering if there is any difference between PHP Code: for(new j = GetPlayerPoolSize(), i = 0; i <= j;  i++)  and PHP Code: for(new i = 0, j = GetPla...
151
Change PHP Code: format(minfo,sizeof(minfo),"{FA5882}%i. {FFFF90}Name: {375FFF}%s {FFFF90}Rank: {375FFF}%s (%i) {FFFFFF}Stats: %s\n",count, string, GetClanRankName(clan, GetPlayerClanRa...
116
Quote: Originally Posted by JesterlJoker Like what the above says. But here is a descriptive explanation 1. Using textdraws... Global Textdraws or Player Textdraws should be fine. 2. You ...
207
Quote: Originally Posted by antixgaming seriously search before posting! Yes, sorry dad.
82
Quote: Originally Posted by Y_Less Because you test that the file didn't open. You can't write to a file you failed to open. I use "file_create"tho
78
Hey! Why wouldnt this code write anything ? No matter if I change mode on top to "w" as write, still nothing. PHP Code: new File:Test; Test = f_open("scriptfiles/test.txt", "a"); if(!Test) {...
78
Hey! I'm just wondering how do you make custom textdraw based deathlist. I know there is "https://sampwiki.blast.hk/wiki/SendDeathMessage" this function to send death message but I wanna make it te...
207