Approved Bunche of zombie classes

Plug-ins compatibility with Zombie Escape 1.x only!


User avatar
Spir0x
Veteran Member
Veteran Member
Tunisia
Posts: 641
Joined: 7 years ago
Location: Tunisia
Contact:

#21

Post by Spir0x » 5 years ago

There's no erros on compiler it compiles fine but the banshee zombie class won't work when i click on 6. Banshee Zombie VIP no thing happen.

User avatar
Spir0x
Veteran Member
Veteran Member
Tunisia
Posts: 641
Joined: 7 years ago
Location: Tunisia
Contact:

#22

Post by Spir0x » 5 years ago

up

User avatar
crasy00skull
Member
Member
Algeria
Posts: 1
Joined: 5 years ago
Contact:

#23

Post by crasy00skull » 5 years ago

i need ze_zombie_classes.inc :) help
Crasy Skull

User avatar
Spir0x
Veteran Member
Veteran Member
Tunisia
Posts: 641
Joined: 7 years ago
Location: Tunisia
Contact:

#24

Post by Spir0x » 5 years ago

zombie_classes.inc:

Code:

Code: Select all

#include <ze_zombie_classes_const>
 
/*****************************************/
/************   FORWARDS    **************/
/*****************************************/
 
/**
 * Called when determining whether a class should be available to a player.
 *
 * Possible return values are:
 *  - ZE_CLASS_AVAILABLE (show in menu, allow selection)
 *  - ZE_CLASS_UNAVAILABLE (show in menu, don't allow selection)
 *  - ZE_CLASS_DONT_SHOW (don't show in menu, don't allow selection)
 *
 * @param id            Player index.
 * @param classid       Internal zombie class ID.
 */
forward ze_select_zombie_class_pre(id, classid)
 
/**
 * Called right after a player selects a class from the menu.
 *
 * @param id            Player index.
 * @param classid       Internal zombie class ID.
 */
forward ze_select_zombie_class_post(id, classid)
 
/*****************************************/
/************** NATIVES ******************/
/*****************************************/
 
/**
 * Returns a player's current zombie class ID.
 *
 * @param id        Player index.
 * @return          Internal zombie class ID, or ZE_WRONG_ZOMBIE_CLASS if not yet chosen.
 */
native ze_get_current_zombie_class(id)
 
/**
 * Returns a player's next zombie class ID (for the next infection).
 *
 * @param id        Player index.
 * @return          Internal zombie class ID, or ZE_WRONG_ZOMBIE_CLASS if not yet chosen.
 */
native ze_get_next_zombie_class(id)
 
/**
 * Sets a player's next zombie class ID (for the next infection).
 *
 * @param id        Player index.
 * @param classid   A valid zombie class ID.
 * @return          True on success, false otherwise.
 */
native ze_set_next_zombie_class(id, classid)
 
/**
 * Returns the default maximum health for a specific zombie class.
 *
 * Note: does not take into account any kind of HP multipliers.
 *
 * @param id        Player index.
 * @param classid   A valid zombie class ID.
 * @return          Maximum amount of health points, -1 on error.
 */
native ze_get_zombie_class_health(id, classid)
 
/**
 * Registers a custom class which will be added to the zombie classes menu of ZP.
 *
 * Note: The returned zombie class ID can be later used to identify
 * the class when calling the zp_get_user_zombie_class() natives.
 *
 * @param name          Caption to display on the menu.
 * @param description   Brief description of the class.
 * @param health        Class health.
 * @param speed         Class maxspeed (can be a multiplier).
 * @param gravity       Class gravity multiplier.
 * @return              An internal zombie class ID, or ZE_WRONG_ZOMBIE_CLASS on failure.
 */
native ze_register_zombie_class(const name[], const description[], health, speed, gravity)
 
/**
 * Returns a zombie class' ID.
 *
 * @param name      Class name to look for.
 * @return          Internal zombie class ID, or ZE_WRONG_ZOMBIE_CLASS if not found.
 */
native ze_get_zombie_class_id(const real_name[])
 
/**
 * Returns a zombie class' name.
 *
 * @param classid   A valid zombie class ID.
 * @param name      The buffer to store the string in.
 * @param len       Character size of the output buffer.
 * @return          True on success, false otherwise.
 */
native ze_get_zombie_class_name(classid, name[], len)
 
/**
 * Returns a zombie class' description.
 *
 * @param classid       A valid zombie class ID.
 * @param description   The buffer to store the string in.
 * @param len           Character size of the output buffer.
 * @return              True on success, false otherwise.
 */
native ze_get_zombie_class_desc(classid, description[], len)
 
/**
 * Returns number of registered zombie classes.
 *
 * @return          Zombie class count.
 */
native ze_get_zombie_class_number()
 
/**
 * Shows menu with available zombie classes to a player.
 *
 * @param id        Player index.
 */
native ze_open_zombie_classes_menu(id)
 
/**
 * Appends text to a class being displayed on the zombie classes menu.
 * Use this on the class select pre forward.
 *
 * @param text      Additional text to display.
 */
native ze_add_zombie_class_menu_text(const text[])

DeVil_Raghav
Member
Member
India
Posts: 25
Joined: 3 years ago
Contact:

#25

Post by DeVil_Raghav » 3 years ago

Hey escapers, I have a problem with compiling the "banshee" code, it shows "could not locate ouput file c:\hp\users\desktop\scripting\compiled\ze_banshee.amxx" compiled failed.

What should I do ? Help me :) :D
Thank You :)

User avatar
z0h1r-LK
Mod Developer
Mod Developer
Morocco
Posts: 473
Joined: 5 years ago
Location: The Red City ❤
Contact:

#26

Post by z0h1r-LK » 3 years ago

Mohamed Alaa wrote: 5 years ago
Prekrasnoe Daleko wrote: 5 years ago Jack GamePlay, Maybe only be done for Vip?
I don't understand.
him is mean,you can updated zombie class if you want make Zombie for VIP (access) ...
Zombie Leech - [VIP Only]

DeVil_Raghav
Member
Member
India
Posts: 25
Joined: 3 years ago
Contact:

#27

Post by DeVil_Raghav » 3 years ago

I am getting error in this code of banshee zombie class for zombie escape server may be I am doing it wrong please help

THANK YOU :)
Attachments
ze_banshee.sma
(12.09 KiB) Downloaded 338 times
ze_banshee.sma
(12.09 KiB) Downloaded 338 times

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#28

Post by Night Fury » 3 years ago

DeVil_Raghav wrote: 3 years ago I am getting error in this code of banshee zombie class for zombie escape server may be I am doing it wrong please help

THANK YOU :)
What's the error exactly?
Paste it here so we can help.
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

DeVil_Raghav
Member
Member
India
Posts: 25
Joined: 3 years ago
Contact:

#29

Post by DeVil_Raghav » 3 years ago

Mohamed Alaa wrote: 3 years ago
DeVil_Raghav wrote: 3 years ago I am getting error in this code of banshee zombie class for zombie escape server may be I am doing it wrong please help

THANK YOU :)
What's the error exactly?
Paste it here so we can help.
The Error is =
//C:\Users\error\hp\Downloads\compiler\scripting\ze_banshee.sma<2> : fatal error 100: cannot read from file: "ze_zombie_class"
//
//compilaton aborted
//1 Error.
//could no locate the ouput file C:\Users\hp\Downloads\compiler\scripting\compiled\ze_banshee.amx <compile failed>.
//
//compilation time : 2.92 sec

DeVil_Raghav
Member
Member
India
Posts: 25
Joined: 3 years ago
Contact:

#30

Post by DeVil_Raghav » 3 years ago

Up

User avatar
Night Fury
Mod Developer
Mod Developer
Posts: 677
Joined: 7 years ago
Contact:

#31

Post by Night Fury » 3 years ago

Make sure to create and add the include file.
Check the first post.
Want your own mod edition? PM me.
Accepting private projects.
Discord: Fury#7469
Image

DeVil_Raghav
Member
Member
India
Posts: 25
Joined: 3 years ago
Contact:

#32

Post by DeVil_Raghav » 3 years ago

Mohamed Alaa wrote: 3 years ago Make sure to create and add the include file.
Check the first post.
sorry, but its not working I have those include or inc file but while compiling I still get this error =
The Error is =
//C:\Users\error\hp\Downloads\compiler\scripting\ze_banshee.sma<2> : fatal error 100: cannot read from file: "ze_zombie_class"
//
//compilaton aborted
//1 Error.
//could no locate the ouput file C:\Users\hp\Downloads\compiler\scripting\compiled\ze_banshee.amx <compile failed>.
//
//compilation time : 2.92 sec

PLEASE HELP :)

mldxx
Member
Member
Posts: 32
Joined: 3 years ago
Contact:

#33

Post by mldxx » 2 years ago

I tried the banchee one and does n t work it gaves me the classic zm skin and its not doing anything and i tried to make it myself for ze and i have the same problems
:arrow: Sanctus Espiritus redeem us from our solemn hour
Sanctus Espiritus insanity is all around us :arrow:

User avatar
Evillious Energy
Member
Member
Nepal
Posts: 22
Joined: 3 years ago
Contact:

#34

Post by Evillious Energy » 2 years ago

mldxx wrote: 2 years ago I tried the banchee one and does n t work it gaves me the classic zm skin and its not doing anything and i tried to make it myself for ze and i have the same problems
ya this banshee donot work if u want working one can pm me ill check if i still got it in my file or not...
51.79.157.106:27017

mldxx
Member
Member
Posts: 32
Joined: 3 years ago
Contact:

#35

Post by mldxx » 2 years ago

Can someone give me a good banchee zm pls?
:arrow: Sanctus Espiritus redeem us from our solemn hour
Sanctus Espiritus insanity is all around us :arrow:

Post Reply

Create an account or sign in to join the discussion

You need to be a member in order to post a reply

Create an account

Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute

Register

Sign in

Who is online

Users browsing this forum: No registered users and 0 guests