done.
[Updated] Nemesis Round v1.1
- Muhammet20
- Veteran Member
- Posts: 408
- Joined: 1 Year Ago
- Location: Turkey
- Has thanked: 36 times
- Been thanked: 5 times
- Age: 15
- Contact:
Re: [Updated] Nemesis Round v1.1
[Learning HTML coding language]
[Learning Unreal Engine 4]
[Learning Adobe programs]
- Muhammet20
- Veteran Member
- Posts: 408
- Joined: 1 Year Ago
- Location: Turkey
- Has thanked: 36 times
- Been thanked: 5 times
- Age: 15
- Contact:
[Learning HTML coding language]
[Learning Unreal Engine 4]
[Learning Adobe programs]
- Raheem
- Mod Developer
- Posts: 1972
- Joined: 2 Years Ago
- Location: Egypt
- Has thanked: 32 times
- Been thanked: 108 times
- Age: 22
- Contact:
Here added some missing things, try it and if it's OK update your post with it.
- /*
- Version 1.1:
- What is News ?
- 1- Added Lonjump Plugin To Nemsesis Zombies
- 2- The Nemesis round now is in the last round
- 3- Fixed Bugs & Some Problems
- And Special thanks to Jack Gameplay
- */
- #include <zombie_escape>
- new MaxRounds
- new RoundCount
- new g_maxplayers
- native give_longjump(id)
- new const v_model[] = "models/zombie_escape/Nemesis_Claws.mdl"
- new const g_szNemsisModel[] = "Nemesis_Zombie"
- public plugin_init()
- {
- register_plugin("[ZE] Nemsis round", "1.1", "Kaya Gaming")
- register_event("TextMsg", "new_map_or_restart", "a", "2&#Game_C", "2&#Game_w")
- MaxRounds = get_cvar_pointer("mp_maxrounds")
- g_maxplayers = get_maxplayers()
- }
- public plugin_precache()
- {
- precache_model(v_model)
- formatex(szModelPath, charsmax(szModelPath), "models/player/%s/%s.mdl", g_szNemsisModel, g_szNemsisModel)
- precache_model(szModelPath)
- }
- public ze_roundend()
- {
- RoundCount++
- }
- public new_map_or_restart()
- {
- RoundCount = 0
- }
- public ze_zombie_appear(id)
- {
- if(get_pcvar_num(MaxRounds) - RoundCount == 1)
- {
- set_task(0.01, "models", id)
- claws_model(id)
- messages(id)
- give_longjump(id)
- }
- }
- public ze_user_infected_pre(iVictim, iInfector, iDamage)
- {
- if(get_pcvar_num(MaxRounds) - RoundCount != 1)
- return
- new g_attacker = read_data(1);
- new g_victim = read_data(2);
- if(g_victim != g_attacker && ze_is_user_zombie(g_attacker))
- {
- set_task(0.01, "kill_no_infect", g_victim)
- return 1;
- }
- }
- public kill_no_infect(id)
- {
- user_silentkill(id)
- }
- public models(id)
- {
- if(ze_is_user_zombie(id) && get_pcvar_num(MaxRounds) - RoundCount == 1)
- {
- rg_reset_user_model(id)
- rg_set_user_model(id, g_szNemsisModel)
- }
- }
- public messages(id)
- {
- PlaySound(id, "zombie_escape/Nemesis_scream.wav")
- }
- public claws_model(id)
- {
- if(get_pcvar_num(MaxRounds) - RoundCount == 1 && get_user_weapon(id) == CSW_KNIFE && ze_is_user_zombie(id))
- {
- rg_give_item(id, "weapon_knife")
- set_pev(id, pev_viewmodel2, v_model)
- set_pev(id, pev_weaponmodel2, "")
- }
- }
You don't know? Learn and you will know.
-
- Veteran Member
- Posts: 542
- Joined: 2 Years Ago
- Has thanked: 19 times
- Been thanked: 1 time
- Contact:
Does it have some extra abilities or only longjump?
[ Post made via Android ]

- Muhammet20
- Veteran Member
- Posts: 408
- Joined: 1 Year Ago
- Location: Turkey
- Has thanked: 36 times
- Been thanked: 5 times
- Age: 15
- Contact:
kill + longjump
[Learning HTML coding language]
[Learning Unreal Engine 4]
[Learning Adobe programs]
- Muhammet20
- Veteran Member
- Posts: 408
- Joined: 1 Year Ago
- Location: Turkey
- Has thanked: 36 times
- Been thanked: 5 times
- Age: 15
- Contact:
you just forgot thisRaheem wrote: ↑5 Months AgoHere added some missing things, try it and if it's OK update your post with it.
/* Version 1.1: What is News ? 1- Added Lonjump Plugin To Nemsesis Zombies 2- The Nemesis round now is in the last round 3- Fixed Bugs & Some Problems And Special thanks to Jack Gameplay */ #include <zombie_escape> new MaxRounds new RoundCount new g_maxplayers native give_longjump(id) new const v_model[] = "models/zombie_escape/Nemesis_Claws.mdl" new const g_szNemsisModel[] = "Nemesis_Zombie" public plugin_init() { register_plugin("[ZE] Nemsis round", "1.1", "Kaya Gaming") register_event("TextMsg", "new_map_or_restart", "a", "2&#Game_C", "2&#Game_w") MaxRounds = get_cvar_pointer("mp_maxrounds") g_maxplayers = get_maxplayers() } public plugin_precache() { precache_model(v_model) formatex(szModelPath, charsmax(szModelPath), "models/player/%s/%s.mdl", g_szNemsisModel, g_szNemsisModel) precache_model(szModelPath) } public ze_roundend() { RoundCount++ } public new_map_or_restart() { RoundCount = 0 } public ze_zombie_appear(id) { if(get_pcvar_num(MaxRounds) - RoundCount == 1) { set_task(0.01, "models", id) claws_model(id) messages(id) give_longjump(id) } } public ze_user_infected_pre(iVictim, iInfector, iDamage) { if(get_pcvar_num(MaxRounds) - RoundCount != 1) return new g_attacker = read_data(1); new g_victim = read_data(2); if(g_victim != g_attacker && ze_is_user_zombie(g_attacker)) { set_task(0.01, "kill_no_infect", g_victim) return 1; } } public kill_no_infect(id) { user_silentkill(id) } public models(id) { if(ze_is_user_zombie(id) && get_pcvar_num(MaxRounds) - RoundCount == 1) { rg_reset_user_model(id) rg_set_user_model(id, g_szNemsisModel) } } public messages(id) { PlaySound(id, "zombie_escape/Nemesis_scream.wav") } public claws_model(id) { if(get_pcvar_num(MaxRounds) - RoundCount == 1 && get_user_weapon(id) == CSW_KNIFE && ze_is_user_zombie(id)) { rg_give_item(id, "weapon_knife") set_pev(id, pev_viewmodel2, v_model) set_pev(id, pev_weaponmodel2, "") } }
new szModelPath[32]
so other things working successUpdated.
[Learning HTML coding language]
[Learning Unreal Engine 4]
[Learning Adobe programs]
- lizoumapper
- Senior Member
- Posts: 150
- Joined: 11 Months Ago
- Location: Morocco
- Has thanked: 3 times
- Been thanked: 7 times
- Age: 17
- Contact:
but this not nemesis true
nemesis have long jump & high health & high damage & red glow & red arena & red niv & nemesis i kill not infect
there cvars lonhjump hp and glow & damage ...
nemesis have long jump & high health & high damage & red glow & red arena & red niv & nemesis i kill not infect
there cvars lonhjump hp and glow & damage ...
I Love Learn Languages Programmations
- lizoumapper
- Senior Member
- Posts: 150
- Joined: 11 Months Ago
- Location: Morocco
- Has thanked: 3 times
- Been thanked: 7 times
- Age: 17
- Contact:
An enemy does not come in a final round
A random choice once a zombie tour once is a tour nemesis
i remember cvar in zp (zp_nemesis_chance 20)
A random choice once a zombie tour once is a tour nemesis
i remember cvar in zp (zp_nemesis_chance 20)
I Love Learn Languages Programmations
Who is online
Users browsing this forum: No registered users and 0 guests