Posts: 233
Threads: 53
Joined: Jan 2009
Reputation:
0
Hi I have a server with my friend Daniel and I know something:
We have Gang War turf server, we need a script like this:
I need a script which spawn an armor on each gang base.Can someone give it to me?
Posts: 233
Threads: 53
Joined: Jan 2009
Reputation:
0
No, I wanna an armor like in Novocaine, at every gang base.
Posts: 797
Threads: 21
Joined: Jan 2007
Reputation:
0
Did you check the gamemode release section? That would be a great place to see what is available to you.
Posts: 233
Threads: 53
Joined: Jan 2009
Reputation:
0
I added the armours, so who needs the codes, I will put them here!
Posts: 797
Threads: 21
Joined: Jan 2007
Reputation:
0
Just post them so when people seach next they can use it.
Posts: 233
Threads: 53
Joined: Jan 2009
Reputation:
0
OK, how I am home I will post the code!
Posts: 556
Threads: 21
Joined: Feb 2008
Reputation:
0
Use pickups I believe is what you need, if your any good at copy and pasting, copy and paste this but change the co-ordinates for them.
new armorpickup;
armorpickup = AddStaticPickup( 1242, 2, 1503.3359, 1432.3585, 10.1191 );
armorpickup = AddStaticPickup( 1242, 2, 1503.3359, 1432.3585, 10.1191 );
armorpickup = AddStaticPickup( 1242, 2, 1503.3359, 1432.3585, 10.1191 );
public OnPlayerPickUpPickup(playerid, pickupid)
{
if (pickupid == armorpickup)
{
SetPlayerArmour(playerid, 100);
}
}
Hope I helped