[GameMode] My First GM - Zombie Vs Human - 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] My First GM - Zombie Vs Human (
/showthread.php?tid=429374)
The Best GM - Zombie Vs Human / Counter Strike -
Strike97 - 09.04.2013
Re: My First GM - Zombie Vs Human -
Strike97 - 09.04.2013
No Comments
Re: My First GM - Zombie Vs Human -
Strike97 - 09.04.2013
Up...
Re: My First GM - Zombie Vs Human -
Riddick94 - 09.04.2013
Quote:
/Die -> Kill Player / If Stuck
|
Why killing if stuck? Just get player pos and set the same pos with Z coordination + 5.0. Anyway, I like objects.
Re : My First GM - Zombie Vs Human -
samp_boy - 09.04.2013
Gonna Test Your Gm
Re : My First GM - Zombie Vs Human -
samp_boy - 09.04.2013
Nice Gm +Rep
But You Should Add Timer For Next Map
Re: My First GM - Zombie Vs Human -
Strike97 - 09.04.2013
Quote:
Originally Posted by Riddick94
Why killing if stuck? Just get player pos and set the same pos with Z coordination + 5.0. Anyway, I like objects.
|
I Mean /die -> it kill player / and kill player if it stuck or something happen
Re: Re : My First GM - Zombie Vs Human -
Strike97 - 09.04.2013
Quote:
Originally Posted by samp_boy
Nice Gm +Rep
But You Should Add Timer For Next Map
|
I Add 5 min for each map, But there is no countdown clock
And Thanks For +Rep
Re: My First GM - Zombie Vs Human -
iMTube™ - 09.04.2013
nice
Re: My First GM - Zombie Vs Human -
andrewgrob - 09.04.2013
add a /sync cmd if stuck
use mine
pawn Код:
if(strcmp("/sync", cmdtext, true) == 0)
{
new Float:pX,Float:pY,Float:pZ;
GetPlayerPos(playerid,pX,pY,pZ);
SetPlayerPos(playerid,pX+2,pY+2,pZ+2);
SendClientMessage(playerid, 0x9ACD32AA,"You Have Just Syncronized");
}