SA-MP Forums Archive
[GameMode] Zombie Apocalypse Afterlife [New Textdraws & More] - 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] Zombie Apocalypse Afterlife [New Textdraws & More] (/showthread.php?tid=525017)

Pages: 1 2 3


Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 09.07.2014

Hello guys,

This is the another version of MidNight Zombie Apocalypse which I am releasing after a long break . Actually I was very busy with other stuffs, that's why I didn't get time to develop it. And I am sorry for the login bug (which was experienced in previous version).

So it's the time to enjoy with latest script with more features


Screenshots:

New XP Bar:



New Intro Place & Textdraws:

http://s15.postimg.org/mg6p86bt7/sa_mp_009.png
http://s15.postimg.org/yxdcvc6yz/sa_mp_008.png

Dialogs for shop and class selections:












Features [Including old one]:
And the main thing Login Bug Fixed

Free Vip cmd removed:

I have removed free VIP cmd but if you want re-add it then search for CMD:freevip and remove /* and */ from it.

pawn Code:
/*CMD:freevip(playerid)
{
    if(pInfo[playerid][pLogged] == 1)
    {
      if(pInfo[playerid][pXP] >= 0) pInfo[playerid][pVipLevel] = 1;
      SendClientMessage(playerid,-1,""chat" "COL_GREEN"[Info] "COL_WHITE"Now you are vip level 1 :D (/vipmenu)");
    }
    return 1;
}*/
In the above just remove /* and */.

New Class Request Location:

I have added new class request position and if you don't like it or want to improve it then just remove and replace the following lines in the given code:

pawn Code:
public OnPlayerRequestClass(playerid, classid)
{
    SetPlayerPos(playerid, 661.6200,-820.1381,86.5092); // This one
    SetPlayerFacingAngle(playerid, 227.2857); // This one
    SetPlayerCameraLookAt(playerid, 661.6200,-820.1381,86.5092); // This one
    SetPlayerCameraPos(playerid, 673.1569,-826.9614,80.5580); // This one
    CreateObject(2780,658.29999,-814.70001,85.6,0.0,0.0,0.0);
    RemoveBuildingForPlayer(playerid, 705, 658.20313, -818.14062, 85.13281, 0.0);
    SetPlayerWeather(playerid, 7);
    SetPlayerTime(playerid, 0, 0);
    if(classid == 0)
    {
        SetPlayerTeam(playerid,TEAM_ZOMBIE);
        team[playerid] = TEAM_ZOMBIE;
    }
    return 1;
}
Map Format:

Here is the code to add map (scriptfiles\Maps\ini). It is a format and it's used while adding maps to gamemode.
[Note: Maps are saved in filterscripts and are loaded automatically. It is not necessary to add them in server.cfg]

Code:
[basic]
MapName =
FSMapName =
HumanSpawnX =
HumanSpawnY = 
HumanSpawnZ = 
HumanSpawn2X =
HumanSpawn2Y = 
HumanSpawn2Z = 
ZombieSpawnX =
ZombieSpawnY = 
ZombieSpawnZ =
GateX = 
GateY = 
GateZ = 
GaterX = 
GaterY = 
GaterZ = 
CPx = 
CPy = 
CPz = 
GateID = 
MoveGate = 
AllowWater = 
Interior = 
Weather = 
Time = 
EvacType =
Vip Features:

Code:
Vip Package One 

- Vip Unlimited Ammo
- Vip Weapons
- 24/7 Double XP (even when Triple XP or Double XP is loaded from the server you still earn extra from Double XP from VIP + that!)
- Vip 5% non-Zombified player ID's

Vip Package Two 

- Vip Package One Included!
- Vip S.W.A.T Armour Object
- Vip Classes (not developed yet!)
- Vip 10% non-Zombified player ID's

Vip Package Three

- Vip Package One Included!
- Vip Package Two Included!
- Vip Name flashing!
- Vip Weapons Ultra
- Vip Kick Back
- Vip Engineer Class!

Vip Package Four

- Vip Package One Included!
- Vip Package Two Included!
- Vip Package Three Included!
- Vip Armour 50
- Vip Medic Class (ability to use /cure and /heal with 20+
extra hp with heal!)
- Vip Scout Class (1 shot 1 kill)
- Vip 20% non-Zombified player ID's

Vip Package Five

- Vip Package One Included!
- Vip Package Two Included!
- Vip Package Three Included!
- Vip Package Four Included!
- Vip Invisibility
- More I will add soon
Alive Info:

I have separated the Alive Info in "Alive Info1" and in "Alive Info2" because of new textdraws.
AliveInfo2 is used to display Zombies Alive, where AliveInfo1 is used to display Humans Alive.

pawn Code:
stock UpdateAliveInfo()
{
    new string[128];
    format(string,sizeof(string),"HUMANS ALIVE: ~r~%02d",GetTeamPlayersAlive(TEAM_HUMAN));
    TextDrawSetString(AliveInfo,string);
    return 1;
}

stock UpdateAliveInfo2()
{
    new string[128];
    format(string,sizeof(string),"ZOMBIES ALIVE: ~r~%02d",GetTeamPlayersAlive(TEAM_ZOMBIE));
    TextDrawSetString(AliveInfo2,string);
    return 1;
}
You can mix them together if your maps are having big names to keep the string proper.


Credits:
New and old developers of this Gamemode those who deserve credits: Permission:
Yes, I got permission to release it.

Download Link:

Only GameMode (.pwn) All files included
No virus found in server files: > Check <

Help & Support:

From now there will be NO SUPPORT available for this Gamemode from my side. If you need any help then check:
> Server Support Section
> Scripting Section

Other versions:

All versions of Zombie Apocalypse Afterlife/Midnight
Zombie Apocalypse by Hossa:-
Zombie Apocalypse by Kitten:-



Re: Zombie Apocalypse Afterlife [New Textdraws & More] - BodyBoardVEVO - 09.07.2014

If nothing is bugged and you got permissions, than i must say...

Good Job!


EDIT: By the way, i caught 3 virus at that Windows Package for 0.3z, i removed them, but anyways, i have always had the question, for what does these functions are used:

- gLeader
- gMember


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 09.07.2014

Quote:
Originally Posted by BodyBoardVEVO
View Post
If nothing is bugged and you got permissions, than i must say!

Good Job!
Ofcoure. I got permission to release it.


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Hampy - 09.07.2014

Awesome release , i hated that when the old script had the login bug but this GM is advanced + with no bugs good job +rep.


EDIT:// emoticon on both your releases


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - iHawks - 09.07.2014

Awesome gm


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 09.07.2014

Quote:
Originally Posted by iHawks
View Post
Awesome gm
Quote:
Originally Posted by Hampy
View Post
Awesome release , i hated that when the old script had the login bug but this GM is advanced + with no bugs good job +rep.


EDIT:// emoticon on both your releases
Thanks guys . If you keep supporting me than one day I will release the best script


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Faix - 09.07.2014

This is somehow different than the others, good job!


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 09.07.2014

Quote:
Originally Posted by BodyBoardVEVO
View Post
If nothing is bugged and you got permissions, than i must say...

Good Job!


EDIT: By the way, i caught 3 virus at that Windows Package for 0.3z, i removed them, but anyways, i have always had the question, for what does these functions are used:

- gLeader
- gMember
They can be used for making clan system or for any another system like AAP, etc.


Re : Zombie Apocalypse Afterlife [New Textdraws & More] - Clad - 09.07.2014

Nice Edit


Re: Re : Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 09.07.2014

Quote:
Originally Posted by Clad
View Post
Nice Edit
Yea thanks.
Ah! I am lazy because of that I never thought of re-making it, I just keep editing it. Because of that I have to see every time "Nice Edit". I don't like it but I must deserve it


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Ke_NiReM - 09.07.2014

Thanks, for Release


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - omarnor89 - 09.07.2014

It has Virut Win 32!!!! cybercrime malware botnet,it infected my whole pc dude now i cant run firefox or any freaking .exe fix da damn link!!!!!!!


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Ke_NiReM - 09.07.2014

Quote:
Originally Posted by omarnor89
Посмотреть сообщение
It has Virut Win 32!!!! cybercrime malware botnet,it infected my whole pc dude now i cant run firefox or any freaking .exe fix da damn link!!!!!!!
Ops , i dont find any virus , me ....

EDIT : is have Virus Bro , Sscanf.dll


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 10.07.2014

Quote:
Originally Posted by omarnor89
Посмотреть сообщение
It has Virut Win 32!!!! cybercrime malware botnet,it infected my whole pc dude now i cant run firefox or any freaking .exe fix da damn link!!!!!!!
Where is the virus ?? I did scan. But i never find it.
Ok so this is the download link: http://www64.zippyshare.com/d/972273...20%5bv4%5d.rar lets put it on Virus Total and check. Here is the report: https://www.virustotal.com/en/url/8d...is/1404953107/

I don't find any virus there, also what kind of virus is it ? It is not letting you to open firefox and .exe files ?
lol, You must fix your anti virus first!!

And if you are not able to fix your anti virus than try this http://www56.zippyshare.com/v/14545041/file.html


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - N0FeaR - 10.07.2014

Looks good so far!


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Th3aMr - 10.07.2014

nice


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - KDark - 10.07.2014

There's a virus of sscanf.dll in it remove that virus.


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - FahadKing07 - 10.07.2014

Quote:
Originally Posted by KDark
Посмотреть сообщение
There's a virus of sscanf.dll in it remove that virus.
Okay, Thanks for report. I have fixed the link. Check now http://www77.zippyshare.com/v/57930655/file.html


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - Team_PRO - 10.07.2014

I like this


Re: Zombie Apocalypse Afterlife [New Textdraws & More] - 0B3Y - 11.07.2014

Good Job