Search Results
The thread starter on the link you posted has given a link to the 0.3z RC thread. Maybe you should try the link he given.
109
Hi. As for my internet connection I'm using a Mobile Broadband Stick Modem, basically a dial-up. Other programs in my computer that require internet connection is working fine except for SA-MP. Any...
55
The chat range between OOC chat (/b) and normal chat is likely same.
171
Use search next time. https://sampforum.blast.hk/showthread.php?tid=231085
159
Quote: Originally Posted by DaRk_RaiN The limit is 1000 objects https://sampwiki.blast.hk/wiki/Limits I know that -_- but I believe that loop creates 500 objects.
163
pawn Код: for(new i=0; i<100; i++)    {        CreateObject(972,1771.8000488,-1924.5999756,12.5+(7*i),0.0000000,0.0000000,0.0000000);        CreateObject(972,1796.5996094,-1924.699218...
163
You can't remove that gate unless you want to remove all the fences around it.
125
Quote: Originally Posted by TomatoRage Код: pawn Код: if(IsPlayerInRangeOfPoint(playerid,rang,Float:x,y,z)){    RemovePlayerFromVehicle(playerid);    return 1;} Dude, wh...
144
Another problem, objects won't appear, even tho i fixed the mistakes.
163
Quote: Originally Posted by ****** In what world is -1938.5 larger than -1924.6? Look at the parameter order: pawn Код: (Float:max, Float:min) Silly me, thanks
163
I used ******' frandom function which lets you randomize float. And now i have 2 negative floats (Y plane coordinates) which i want to randomize to get another float but when i use this code pawn Ð...
163
CHANGELOG v0.2: * Bug fixes * Checkpoint is now created with briefcase coordinates (before it was created with player-who-gets-the-briefcase's coordinates). * Admin who hides the briefcase can now see...
289
Quote: Originally Posted by iHaze. That's nice, repped Thanks
289
Find The Hidden Briefcase minigame By BlackID Introduction: To start this minigame, a RCON admin must first hide the Briefcase somewhere around the map. After the admin has hid the Briefcase they must...
289
1239 is the ID of "i" symbol. https://sampwiki.blast.hk/wiki/Pickup_ID%27s
182
To move the icon i think you'll need a new coor and then change the coor inside the script. To make the icon displays help. pawn Код: new bankpickup;public OnGameModeInit(){      bankpickup =...
182
Using variable is the way then. pawn Код: new IsSpawned[MAX_PLAYERS];public OnPlayerSpawn(playerid){        IsSpawned[playerid] = 1;        return 1;}public OnPlayerDeath(playerid){    ...
182
It's a callback you just put it on your script. Example of use pawn Код: public OnPlayerSpawn(playerid){         if(IsPlayerAdmin(playerid))         {                   SendC...
182
You can use pawn Код: public OnPlayerSpawn(playerid) To check if the player is spawned or not
182