Raised This Month: $ Target: $400
 0% 

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-18-2014 , 12:42   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #31

Quote:
It works perfect on ZPS.
Thank you for testing it. If there any problem with any of the plugins, just inform me. I will fix it.

Last edited by zmd94; 07-18-2014 at 12:42.
zmd94 is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-19-2014 , 05:30   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #32

New update!
Quote:
Zombie VIP 1.7.2 v2.0
This is the modified version of Zombie VIP 1.7.2. This is the original thread, here.

I have modified this plugin, so that the Nemesis/ Assassin/ Bombardier (for ZPS only) will not get health bonus for killing humans.
Quote:
Only zombie will get the health bonus for killing humans.
Feel free to test it.
Attached Files
File Type: sma Get Plugin or Get Source (zm_vip.sma - 1017 views - 31.6 KB)
zmd94 is offline
Just4Games
Senior Member
Join Date: Jan 2013
Location: Romania
Old 07-19-2014 , 05:49   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #33

Thanks for editing it.
__________________

Just an old fart revisiting the nostalgia.
---------
Oh yeah
|[[ZPA/ZPS]NoSound]|[[ZPA/ZPS]Hud Stats(Edited)]|

PS: I go by MoistWomble nowadays.
Just4Games is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-22-2014 , 08:50   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #34

New update!
Quote:
Adding addon: Lighting for Specific Map
Original thread, here.
PHP Code:
#include <amxmodx>

// Light a
new const g_maps[][] = {
    
"zm_dust2",
    
"zm_inferno",
    
"zm_nuke"
}

// Light b 
new const g_maps2[][] = {
    
"zm_dsds",
    
"zm_ids",
    
"zm_nfsfs"
}

// Light c 
new const g_maps3[][] = {
    
"zm_dgrg",
    
"zm_igrgr",
    
"zm_nrgrr"
}


public 
plugin_init() {
    
register_plugin("map lights""1.0""blabla")
    
set_task(5.0"chackMap")
}

public 
chackMap() {
    new 
map[32]
    
get_mapname(map31)
    new 
i
    
    
for(i=0;isizeof(g_maps);i++) {
        if(
equal(mapg_maps[i])) {
                    
server_cmd"zp_lighting a" )
            break
        }
    }
    
    for(
i=0;isizeof(g_maps2);i++) {
        if(
equal(mapg_maps2[i])) {
                    
server_cmd"zp_lighting b" )
            break
        }
    }
    
    for(
i=0;isizeof(g_maps3);i++) {
        if(
equal(mapg_maps3[i])) {
                    
server_cmd"zp_lighting c" )
            break
        }
    }


Last edited by zmd94; 07-23-2014 at 04:41.
zmd94 is offline
TheDS1337
Veteran Member
Join Date: Jun 2012
Old 07-22-2014 , 18:38   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #35

Quote:
Originally Posted by zmd94 View Post
Original thread, here.

Now, you can have specific model for different admin flag:
Just use below:
PHP Code:
#include < amxmodx >
#include < fakemeta >
#include < cstrike >

#define ACCESS1 ADMIN_IMMUNITY
#define ACCESS2 ADMIN_KICK

enum _eModelData
{
    
szModel30 ],
    
iAcces
};

/*If you want more models simply add another line in this constant. Last item from constant must not have , */
new const g_szModels [ ] [ eModelData ] =
{
    { },
    { 
"BlackSonic"ACCESS1 },
    { 
"WhiteSonic"ACCESS1 }
};

public 
plugin_init ( ) 
{
    
register_forward(FM_SetClientKeyValue,  "@FM_OnSetClientKeyValue");
}

public 
plugin_precache ( )
{
    new 
temp 75 ];

    for(new 
1sizeof g_szModelsi++) 
    {
        
formatex(tempsizeof temp -1"models/player/%s/%s.mdl"g_szModels][ szModel ]);
        
precache_model(temp);
    }
    
    
}

@
FM_OnSetClientKeyValue id, const infobuffer[] , const key[] )
{
    if( 
equalkey"model" ) ) 
    {
        static 
model 32 ];
        
get_user_info(id"model"modelsizeof model 1);
        
        for(new 
1sizeof g_szModelsi++) 
        {
            if(
get_user_flags(id) & g_szModels][ iAcces ]) 
            {
                if(!
equal(modelg_szModels][ szModel ]))
                {
                    
set_user_info(id"model"g_szModels][ szModel ]);
                }
            }    
        }
        return 
FMRES_SUPERCEDE
    }
    return 
FMRES_IGNORED;

Hey, did you try that plugin ? I don't think that it'll work with ZP

Last edited by TheDS1337; 07-22-2014 at 18:38.
TheDS1337 is offline
Brian_Chino77
Senior Member
Join Date: Mar 2014
Location: dunno
Old 07-23-2014 , 04:04   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #36

Can you edit some plugin for me?

I want you to edit zp 5.0.8 with (zpa compability) "zp50_buy_menus.sma"

Usually If the cvar "zp_give_all_grenade_ "0"" it will show a menu that show "1. He Grenade , 2. Flashbang, 3. Smoke Grenade"

What i want is to make it in pack
Brian_Chino77 is offline
Brian_Chino77
Senior Member
Join Date: Mar 2014
Location: dunno
Old 07-23-2014 , 04:13   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #37

So i can buy more than one
Brian_Chino77 is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 07-23-2014 , 04:17   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #38

Quote:
Originally Posted by DeagLe.Studio View Post
Hey, did you try that plugin? I don't think that it'll work with ZP
Yes, you are right. Thank you for reminding me. I will update the list.
Quote:
What I want is to make it in pack?
Can you explain it more?

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

Quote:
So I can buy more than one.
I will try to do it. Do you want it to be free or what?

Last edited by zmd94; 07-23-2014 at 04:34.
zmd94 is offline
Brian_Chino77
Senior Member
Join Date: Mar 2014
Location: dunno
Old 07-23-2014 , 05:22   Re: [ZP] List of Modified + Requested Plugin
Reply With Quote #40

Free
Brian_Chino77 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 01:21.


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