Search Results
This script allows you to save vehicles in game with /saiv (because /save is taken). after saving your vehicles all you need to do is change pawn Код: #define VEHICLES 5 //<< change this to ...
272
pawn Код: new PlayerTeam[MAX_PLAYERS];public OnPlayerSpawn(playerid){     if(PlayerTeam[playerid] = 1)     {           SetPlayerSkin(playerid, skinid);     }     if(PlayerTeam[pl...
87
pawn Код: if(strcmp(cmdtext, "/eup", true) == 0) { // Edit the /eup to your elevator command.   MoveObject(elevator,209.4848,1875.2593,12.4170,2.00); // Put your cords in here   SendClientMess...
68
Dont put this under OnPlayerDeath Then. pawn Код: if(deaths[playerid] == 3){//give the player any weapon you like.deaths[playerid] = 0;} Put this under OnPlayerDeath pawn Код: if(deaths[playe...
131
Put this with the rest of your "new" pawn Код: new deaths[MAX_PLAYERS]; This goes under OnPlayerDeath pawn Код: deaths[playerid] ++; This goes under OnPlayerSpawn pawn Код: if(deaths[pla...
131
Put this the rest of your "new" pawn Code: new Float:RandomSpawns[4][3] = {{1253.6213,368.9244,19.5614}, //Change if you wish to.{1263.1244,369.7004,19.5547}, //Change if you wish to.{1246.1509,368.8...
138
The links working fine, i still uploaded again for you: http://uploading.com/files/154a448c/...on%2Bv2.0.rar/
78
When ever you run an application: Right click on application > choose "Run As Administer". You can also make it run as an admin automatically without double clicking all the time: Right click on a...
64
Quote: Originally Posted by juuleman I know i am a noob but if i do /save i get this out: AddPlayerClass(248,1023.0154,-982.3384,42.6145,185.2449,0,0,0,0,0,0); // What are the entranceX...
279
This is what i get when i click on "Mail" Code: You don't have an inbox...yet Sign up for Windows Live Hotmail and get a free, customizable inbox with lots of storage and great security. Note: Wheth...
133
If your using a command to teleport, Then heres how to do it: This goes right on top of the script with your other "new" and "forward" pawn Код: forward DropDelay(playerid); Put this in your tel...
158
Use PlayerToPoint. Here's PlayerToPoint if you dont have it: Put this with your other forwards. pawn Код: forward PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z); Put this anywhe...
133
Quote: Originally Posted by FreeSoul How to use UsePlayerPedAnims(); ? So if the player has gang skins,if you walk and hold alt they will walk like gang skins,if they have other skins,they...
140
Put this with the other new's pawn Код: new Float:RandomSpawns[2][3] = {{X, Y, Z}, // Change X, Y, Z.{X, Y, Z}}; Put this In"OnPlayerSpawn" pawn Код: new rand;rand = random(sizeof(RandomSpawn...
109
Quote: Originally Posted by RemulisLTU it's freeroam you must hae weapons then just change: pawn Код: if(weaponid!=0) Kick(i); to pawn Код: if(weaponid == GunID){ Kick(i);} //...
71
I dont really see any problem with that command but make sure you have "HouseEntered[playerid] = 1;" in /enter command. Also put "HouseEntered[playerid] = 0;" under OnPlayerConnect(playerid)
84
What do you mean? What do you need help with?
190
Use this. pawn Код: OnPlayerDeath(playerid){  SetPlayerWantedLevel(playerid, 0); // 0 is the wanted level , you can change it.}
97