Search Results
Bug: if we try to "Load" the map editor while the game is running, it says that we can't because the game is running (which is normal). But when you close the game and retry, you always get this error...
30,640
Spawn the player under OnPlayerConnect and use TogglePlayerSpectating under OnPlayerSpawn. OnPlayerSpawn : pawn Code: if(FirstSpawn[playerid] == 0){    FirstSpawn[playerid] = 1;    TogglePlayerS...
176
pawn Код: IsPlayerInRangeOfPoint(playerid, Float:range, Float:x, Float:y, Float:z)
171
pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){    dcmd(radio, 5, cmdtext);    return SendClientMessage(playerid,0xFF0000C8,"Unkown command{FFFFFF} /cmds{FF0000} Also check {FFFFFF}...
58
Quote: Originally Posted by RyanPetersons Case 0 is fine. Yes but only if you try only with one person (alone), i shouldn't work else.
166
pawn Код: case 4:{    new string[140];    new MyDialog[256];    for (new i=0;i<MAX_PLAYERS;i++)    {        if (PlayerOrg[i] == PlayerOrg[playerid] && i != playerid)     ...
166
No you have to put the variable that is in "Fillup" and add it in the command instead of Refueling[v] = 1;
150
Hi, pawn Код: public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ){    SetPlayerPosFindZ(playerid, fX, fY, fZ);     return 1;}
80
Download this file: http://www.solidfiles.com/d/f8f82f8627/ and put it in the \pawno\include folder.
151
add foreach in your includes: https://sampforum.blast.hk/showthread.php?tid=92679
151
if(PlayerInfo[targetid][pMuted] == 1) and else if(PlayerInfo[targetid][pMuted] == 0)
139
You don't need to use UpdateDynamic3DTextLabelText because it's only to update the text, just define the draw distance in CreateDynamic3DTextLabel.
122
The labels are created in virtual world 0. Make sure your virtual world is also 0 because at this height (z = 1007.1719), I think you are in an interior and maybe the virtual world is not 0.
147
If your SendClientMessageEx is this: http://pastebin.com/HCymkKik, then you shouldn't use "playerid" as first argument. Or use SendClientMessage.
82
Show us your Create3DTextLabel lines.
147
What sentence do you get when you use that command?
139
Can you give the whole function/command and explain the problem?
248
Hi, I'm trying to redo my /ahelp command in this way: pawn Код: if (strcmp("/ah", cmdtext, true) == 0){    new CmdVIP [ 1024 ];    CmdVIP = "Commands VIP:  \n";    strcat(CmdVIP, "line 1 ...
60