SA-MP Forums Archive
[GameMode] [GM] || Los Santos Gang Deathmatch! || V:0.3 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Gamemode Scripts (https://sampforum.blast.hk/forumdisplay.php?fid=71)
+--- Thread: [GameMode] [GM] || Los Santos Gang Deathmatch! || V:0.3 (/showthread.php?tid=39428)



[GM] || Los Santos Gang Deathmatch! || V:0.3 - Ryuu - 10.06.2008

Los Santos Gang Deathmatch
Version: 0.1
Hello everyone. I am new to this community (this is actually my first post) and I am also very new to scripting. I've been reading a lot of tutorials about PAWNO and I've come up with a very VERY simple LS DM script.

Gangs:

The Mafia
The Vagos
Grove Street Families
Los Aztecas
Ballas

Features:
~5 gangs to select from~
~Selection music with full previews of each class~
~Gang HQ's with specific gang cars~
~You can only enter your gang's cars. If you try to enter another gang's car, you are kicked out~
~Player's names are shown in gang colors~
~Players appear on the map as markers, coded with gang colors~
~Anti-Teamkill system. Kill a team member and you get a message saying "DO NOT TEAM KILL!". Then you are kicked~

~Lock/Unlock Cars~ (use /lock and /unlock)
~Gang HQ gates~ (NOT ADDED YET)
~Turf system~ (NOT ADDED YET)

Please realize that this is my first script and this IS only the first version. I will be updating this from time to time.

Download



Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - [FTW]Spitfire757 - 14.06.2008

Nice script dude, very good for first script, I run this on my server


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - edygangsta - 15.06.2008

Awesome Work man i will test it on my server


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Maikel - 15.06.2008

Quote:
Originally Posted by [x
J_0_K_3_R ]
Awesome Work man i will test it on my server
Why you use all time other letter type? That sucks.


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - sebihunter - 15.06.2008

----400th Post----

Nice dude!

----400th Post----



Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Ryuu - 27.06.2008

Thanks for the support guys


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - cjmaster - 27.06.2008

hey i dunno if u got it to in pawn a warning

u resolve it with this:
Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	 new newcar = GetPlayerVehicleID(playerid);
	 if (strcmp("/kill", cmdtext, true, 10) == 0)
	{
		SetPlayerHealth(playerid,0.0);// Kills The Player
		return 1;
	}
   if (strcmp("/lock", cmdtext, true, 10) == 0)
	{
			for(new i = 0; i < MAX_PLAYERS; i++)
		{
 			SetVehicleParamsForPlayer(newcar, i, 0, 1); // This is to lock a car for all players
 			GameTextForPlayer(playerid, "Locked", 1000, 3);
		}
		  return 1;
	}
   if (strcmp("/unlock", cmdtext, true, 10) == 0)
	{
			for(new i = 0; i < MAX_PLAYERS; i++)
		{
		  SetVehicleParamsForPlayer(newcar, i, 0, 0); // This is to unlock a car for all players
		  GameTextForPlayer(playerid, "Unlocked", 1000, 3);
		}
		  return 1;
	}
   return 0;
( but soem spaces infront of IF: it may not hit the start line it must have some spaces between start of a line and IF


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - um_cheese - 01.01.2010

man i love this iv been surching for a good gang GM for agers ty


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Crezy-Boy - 01.01.2010

Good for your first script, keep it up!

Cheers, Everybody.


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Nyafe - 01.01.2010

can someone put another link for me to download


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - ROCK__STAR - 02.05.2012

bro can u pm me when u add turf system? im making a server and im finding a gm for it.


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Tidzii - 02.05.2012

Wooow Good Job
And nice release


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - Brades102 - 08.06.2012

Need a link sounds like a awesome gamemode


Re: [GM] || Los Santos Gang Deathmatch! || V:0.3 - TheEasyWay - 10.06.2012

This GameMode sounds pretty nice. I mind test it later when it got a turf system.