Search Results
Ability to use HTTPS request under HTTP request, at the moment when webserver is forced to use HTTPS you get 301 permanent redirect. Код: HTTP(index, type, url[], data[], callback[])
33,348
For skin you could do it with PVar's like this: pawn Code: dcmd_onduty(playerid,params[]){    #pragma unused params    if (AccInfo[playerid][Level] >= 1)    {        if(AccInfo[playerid...
220
Location: include/gl_common.inc - SA-MP 0.3d RC1 pawn Код: stock PlaySoundForPlayersInRange(soundid, Float:range, Float:x, Float:y, Float:z){    for(new i=0; i<MAX_PLAYERS; i++)    {    Â...
101
Read: https://sampwiki.blast.hk/wiki/OnPlayerCommandText
132
Maybe? pawn Код: CMD:me(playerid, params[]){    new pName[MAX_PLAYER_NAME], str[128];    if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /me [action]");    GetPlay...
944
https://sampforum.blast.hk/showthread.php?tid=120356
73
Change {FFFFF} to {FFFFFF} And after "Close" add ,"" So it looks like this: pawn Код: ShowPlayerDialog(playerid,5,DIALOG_STYLE_MSGBOX," Teleported ","Welcome to {FFFFFF}Los Santos.","Close", "");
76
There is maybe other cars with boot, so you need to add them yourself.. pawn Код: stock     IsBootCar(vehicleid){    new        car = GetVehicleModel(vehicleid);    switch(car)    {  ...
70,451
Try with this pawn Код: Mute[ClickedPlayer[playerid]] = 1;
170
You don't need to check if player is connected. pawn Код: #include <a_samp>new ClickedPlayer[MAX_PLAYERS];//-------------------------------Dialog-----------------------------------------publ...
170
Oh damm, i was eating and i didn't pushed the 'post quick replay' button. Retardedwolf posted the answer..
170
Read this: http://forum.sa-mp.com/showpost.php?...&postcount=263 Should help you.
241
pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){    if(!strcmp(cmdtext, "/drinks", true))    {        ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "What is it that you want?"...
90
Try pawn Код: dcmd_kick(playerid, params[]){    new        id,        reason[24],        string[64];    if(sscanf(params, "us[24]", id, reason)) return SendClientMessage(playerid, ...
243
Added:/editloc [coords | name] [locationname]/editloc name [locationame] -> USAGE: /editloc name [oldname] [newname] /delloc [locationname] Any bugs, contact me.
234
Why you use OnPlayerCommandText? Just make a timer to check it every X seconds or just use OnPlayerKeyStateChange to check if player presses fire key with those weapons. pawn Код: SendClientMess...
251
Soon gonna update a little bit./editloc [coords | name] [locationname | new locationname] /delloc [locationname] (new)
234
Features Simple Can't add two same location names to database Commands/addloc [locationname] (rcon admin) /editloc [coords, name] [locationname] (rcon admin)/editloc name [locationame] -> USAGE: /...
234
Just order by DESC and display 5 lines?
215