Raised This Month: $51 Target: $400
 12% 

Subplugin Submission [T] List of Modified + Requested Plugins


Post New Thread Reply   
 
Thread Tools Display Modes
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-15-2014 , 12:24   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #21

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 
Attached Files
File Type: sma Get Plugin or Get Source (simple_vip.sma - 777 views - 2.3 KB)

Last edited by zmd94; 11-28-2014 at 10:28.
zmd94 is offline
yokomo
Surprise Ascot!
Join Date: May 2010
Location: Malaysia
Old 07-15-2014 , 14:59   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #22

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
__________________
Team-MMG CS1.6 Servers:
✅ MultiMod -- 103.179.44.152:27016
✅ Zombie Plague -- 103.179.44.152:27015
✅ Zombie Escape -- 103.179.44.152:27017
✅ Klassik Kombat -- 103.179.44.152:27018
✅ Boss-Battle -- 103.179.44.152:27019

Last edited by yokomo; 07-15-2014 at 15:24. Reason: typo typo
yokomo is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-15-2014 , 23:48   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #23

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 is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-16-2014 , 13:19   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #24

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.

Last edited by zmd94; 07-16-2014 at 13:22.
zmd94 is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-17-2014 , 11:23   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #25

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.
zmd94 is offline
H.RED.ZONE
Veteran Member
Join Date: Sep 2011
Location: Serbia, Belgrade
Old 07-17-2014 , 12:26   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #26

Why use static on global variable? O.o
__________________
H.RED.ZONE is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-17-2014 , 13:35   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #27

Quote:
Originally Posted by H.RED.ZONE View Post
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:



Attached Files
File Type: sma Get Plugin or Get Source (ap_leader.sma - 1355 views - 3.0 KB)
zmd94 is offline
H.RED.ZONE
Veteran Member
Join Date: Sep 2011
Location: Serbia, Belgrade
Old 07-17-2014 , 13:53   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #28

Quote:
Originally Posted by zmd94 View Post
Sorry, what do you mean?
Code:
static cvar_ammo
__________________
H.RED.ZONE is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-17-2014 , 14:07   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #29

Quote:
Originally Posted by H.RED.ZONE View Post
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.
zmd94 is offline
Ren0k
Junior Member
Join Date: Jul 2014
Old 07-18-2014 , 10:47   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #30

Works perfect on ZPS
__________________
Ren0k is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:21.


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