Search Results
why not things like "PED_FIREWEAPON" then it will automaticly say the key binded to it
150
pawn Code: if(IsPlayerInRangeOfPoint(playerid, 7.0, 2505.5984, -1694.5410, 13.5581)) {     GameTextForPlayer(playerid, 0xFFFFFFFF, "You can repair your car here",5000,3);}//format the time and styl...
235
If you update this label every time the player spawns then simply delete the label before you create a new one. It wil override indeed when you don't so.. pawn Код: DeletePlayer3DTextLabel(playe...
67
pawn Code: if(IsPlayerInRangeOfPoint(playerid, 7.0, 2505.5984, -1694.5410, 13.5581)) {     GameTextForPlayer(playerid, 0xFFFFFFFF, "You can repair your car here");}
235
create an array with spawn locations in it. (OnPlayerSpawn) pawn Код: new Float:RandSpawn[][4] = {//x, y, z, angle    {0.0, 0.0, 0.0, 0.0},    {0.0, 0.0, 0.0, 0.0},    {0.0, 0.0, 0.0, 0.0},Â...
126
depends on what you want what to use, you can use a boolean that will return a true or a false (zero or one) or you use variables with a value and then you can change the variable and check with a if ...
154
they are illegal I geuss. I dont think its smart to share you links with such programms here. you should find that out yourself. but your question is answered I guess NPC's dont take playerslots
102
npc's wont take player slots they will have id slots. If you spawn 10 npc in your gamemode the first 10 id slots will be token by them. so the first player 1/50 will get id 11 but playerslot 1 of 50. ...
102
actually FF is the transperecy value when you want a lower alpha you should edit that Код: 0xRRGGBBAA. RR is the red part of the color, GG the green and BB the blue. AA is the alpha value and ind...
76
If you have this included you maybe opened an other pawno from an older server version for example accidently. This can happend becouse your operation system is opening .pwn files by default with you...
151
Include the plugin to use this in your filterscript pawn Код: #include <ladmin> then you can enable it for all vips pawn Код: command(flash, playerid, params[]) {    if(IsPlayerVipMem...
139
good keep those logic operators in mind to don't confuse them again (logic operator example: && || ==)
138
The difference between pawn Код: PlayerInfo[targetid][pMuted] = 1 and pawn Код: PlayerInfo[targetid][pMuted] == 1 is that with the first one you use, you are trying to check with a if stat...
138
therefor I said a short tuturial. and indeed its not really finshed to call it a tut. post it in the right section and optimalise your tut by explaining why you did something. and how you reached th...
98
Why you posted this in the scriping help?, you are not really making a question and asking for scripting help! This is more like a short tutorial.. you should post this here: http://forum.sa-mp.com/f...
98
use booleans, they can contain a true or a false variable and they are for everyone expect when you couple a id on it. then you can call them for a separate player
58