AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Zombie Plague Mod (https://forums.alliedmods.net/forumdisplay.php?f=126)
-   -   Subplugin Submission [T] List of Modified + Requested Plugins (https://forums.alliedmods.net/showthread.php?t=243959)

zmd94 07-15-2014 12:24

Re: [ZP] List of Modified + Requested Plugin
 
1 Attachment(s)
New update!
Quote:

Adding addon: Simple VIP System.
Original thread, here.

What it does?

Quote:

1. 150 HP/ 100 AP every spawn.
2. +15 HP/ AP bonus for each kill.
3. [VIP] tag in score table.
How to use?

1. Just download, the file.

2. Please edit your user.ini file. If you want to add VIP when using this plugin, just do like this example:
Quote:

"zmd94" "123456" "bt" "a"
Please make sure the flag is "bt".

Configuration:
PHP Code:

//Just uncomment 'IM_USING_ZP' if your server is running ZP
#define IM_USING_ZP

// if you are using this Custom Level for ZPA, 
// just change #include <zombieplague>  into #include <zombie_plague_advance> 
#if defined IM_USING_ZP
#include <zombieplague> 
#endif 

What can you edit?
PHP Code:

    g_iSpawnHealth register_cvar("cs_spawn_health""150"// Amount of health given at respawn
    
g_iSpawnArmor register_cvar("cs_spawn_armor""100"// Amount of armor given at respawn
    
g_iAttacHealth register_cvar("cs_zombie_xp""15"// Amount of health given at attac2ing
    
g_iAttacArmor register_cvar("cs_zombie_xp""15"// Amount of armor given at attac2ing 


yokomo 07-15-2014 14:59

Re: [ZP] List of Modified + Requested Plugin
 
I've changed a bit simple vip code, feel free to test.

Simple VIP


This plugin must be install after Simple VIP plugin.
Advance Bullet Damage

zmd94 07-15-2014 23:48

Re: [ZP] List of Modified + Requested Plugin
 
Thank you, yokomo.

New update!
Quote:

Adding addon: Simple VIP System v2.0
What new!

Now you can edit the value of the health and armor bonus for each kill, and the value of given health and armor for every respawn by changing this line:
PHP Code:

#define ExtraHealth 15.0
#define ExtraArmor 15.0
#define VipStartHealth 150.0
#define VipStartArmor 100.0 

If you want to use this plugin, just click here. Besides, this plugin can be used with this plugin:

zmd94 07-16-2014 13:19

Re: [ZP] List of Modified + Requested Plugin
 
New Update!
Quote:

Adding addon: Ammo Packs Reward for Surviving
If you want to change the value of given ammo packs, just edit this value:
PHP Code:

"zp_ap_forsurviving""2" 

Click here, to download the plugin.

I'm now working on First Blood Reward plugin. I hope I can release it soon.

zmd94 07-17-2014 11:23

Re: [ZP] List of Modified + Requested Plugin
 
Thank you to georgik57. Original thread, here.

New Update!
Quote:

Adding addon: Unlimited Clip for Specific Round
Just use below code, if you want to have unlimited clip for human in Nemesis Round only:
PHP Code:

#include <amxmodx> 
#include <zombieplague> 

static cvar_ammo 

public plugin_init() 
    
register_plugin("[ZP] Nemesis round inf clip""1.0""93"

public 
zp_round_started(mode

    if (
mode != MODE_NEMESIS
        return; 
     
    
cvar_ammo get_cvar_num("zp_human_unlimited_ammo"
    
set_cvar_num("zp_human_unlimited_ammo"2


public 
zp_round_ended() 
    
set_cvar_num("zp_human_unlimited_ammo"cvar_ammo

If you want me to help you to edit this plugin, so that it can be used in other round, just inform me. I will do my best.

H.RED.ZONE 07-17-2014 12:26

Re: [ZP] List of Modified + Requested Plugin
 
Why use static on global variable? O.o

zmd94 07-17-2014 13:35

Re: [ZP] List of Modified + Requested Plugin
 
1 Attachment(s)
Quote:

Originally Posted by H.RED.ZONE (Post 2169345)
Why use static on global variable? O.o

Sorry, what do you mean?

New update!
Quote:

Adding addon: Ammo Packs Leader v2.0
What I have changed:
Quote:

This plugin will only tell the frag and ammo packs leader at the end of every round. A green hud message will appear to tell who is the frag and ammo pack leader.
Credits:
Quote:

1. Kiske for his original code, here.
Screenshot:

http://img.ctrlv.in/img/14/07/17/53c8091877b69.jpg

http://img.ctrlv.in/img/14/07/17/53c8090597472.jpg

H.RED.ZONE 07-17-2014 13:53

Re: [ZP] List of Modified + Requested Plugin
 
Quote:

Originally Posted by zmd94 (Post 2169372)
Sorry, what do you mean?

Code:

static cvar_ammo

zmd94 07-17-2014 14:07

Re: [ZP] List of Modified + Requested Plugin
 
Quote:

Originally Posted by H.RED.ZONE (Post 2169382)
Code:

static cvar_ammo

Sorry, I'm also do not know why? I'm just post the plugin made by georgik57. Original thread, here.

However, this plugin is working.

Ren0k 07-18-2014 10:47

Re: [ZP] List of Modified + Requested Plugin
 
Works perfect on ZPS


All times are GMT -4. The time now is 15:12.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.