Raised This Month: $ Target: $400
 0% 

Zombie Plague Mod 5.0


Post New Thread Closed Thread   
 
Thread Tools Display Modes
sabrioz
Senior Member
Join Date: Apr 2009
Old 08-14-2009 , 11:47   Re: Zombie Plague Mod 4.3
#3181

Quote:
Originally Posted by ThePenisMightier View Post
I'm running 4.3 with the playermodel plugin, I cant get the playermodel plugin to work I'm assuming because of something zm does to skins. Is there any way around this that anyone can think of or a different plugin that'll allow me to assign some humans (admins/regulars) models different from default cs ones?
if you are using zombie plague 4.3

you don't need to use an extra plugin to add your custom model to zombie mod...just use zombieplague.ini and add your custom model...

open your zombieplague.ini using notepad

Code:
[Player Models] (randomly chosen if more than one)
HUMAN = human1 , human2 , human3 , human4 , human5 , human6
NEMESIS = zombie_nemesis
SURVIVOR = human_survivor
ADMIN ZOMBIE = zombie_admin
ADMIN HUMAN = ThePenisMightier
or read the zombie plague Frequently Asked Questions
ok goodluck friendzzzzz

Last edited by sabrioz; 08-14-2009 at 11:50.
sabrioz is offline
TeeKay
Junior Member
Join Date: Aug 2009
Old 08-14-2009 , 11:54   Re: Zombie Plague Mod 4.3
#3182

help me >.< i have made my server rite but why cant i join it i mean i have to Put on Lan then i can join but if i put on internet it wont work why ? =S
TeeKay is offline
sob790717
New Member
Join Date: Apr 2009
Old 08-14-2009 , 14:49   Re: Zombie Plague Mod 4.3
#3183

[english:You can create an additional set mode in which props can be purchased
Mode which can not be purchased by setting it?]


[Chinese Traditional:你能製作一個可以設定附加道具能在哪個模式中被購買
哪個模式中不能被購買的設定功能嗎?]
sob790717 is offline
deadman909
Veteran Member
Join Date: Oct 2008
Old 08-16-2009 , 03:03   Re: Zombie Plague Mod 4.3
#3184

Is there a WAY to Make a Whole Entire Team Zombies.
*I want to make all the Terroist to be Zombie.
*I want it so they cant Affect the CT Team.
*Kind of Zombies VS Humans
__________________

deadman909 is offline
Send a message via MSN to deadman909 Send a message via Yahoo to deadman909
Zyhm
Junior Member
Join Date: Jun 2009
Old 08-16-2009 , 11:25   Re: Zombie Plague Mod 4.3
#3185

U mean Swarm round? or pleuge (or what ever u call it) with no nemesis and survivals?
Zyhm is offline
deadman909
Veteran Member
Join Date: Oct 2008
Old 08-16-2009 , 13:12   Re: Zombie Plague Mod 4.3
#3186

NVM i customize my Stuff
Heres my Server IP: 63.209.36.124:27015



Wee just need Left 4 Dead Models i have some but not all.
If anybody can give me Links to Some id Appreciate it
__________________

deadman909 is offline
Send a message via MSN to deadman909 Send a message via Yahoo to deadman909
maslyak
Junior Member
Join Date: Aug 2008
Old 08-16-2009 , 21:50   Re: Zombie Plague Mod 4.3
#3187

MeRcyLeZZ
we have functions to retrieve and set zombie class, like zp_get_user_zombie_class()
zp_set_user_zombie_class()

Can you make also functions to set and get player weapon ? like
zp_get_user_weapon()
zp_set_user_weapon()
maslyak is offline
fezh
Veteran Member
Join Date: Dec 2008
Location: BANNED
Old 08-16-2009 , 22:00   Re: Zombie Plague Mod 4.3
#3188

Quote:
Originally Posted by maslyak View Post
MeRcyLeZZ
we have functions to retrieve and set zombie class, like zp_get_user_zombie_class()
zp_set_user_zombie_class()

Can you make also functions to set and get player weapon ? like
zp_get_user_weapon()
zp_set_user_weapon()
What's the point? You can do it with the default AMXX plugin..
__________________
"There is no knowledge, that is not power"
fezh is offline
maslyak
Junior Member
Join Date: Aug 2008
Old 08-16-2009 , 22:44   Re: Zombie Plague Mod 4.3
#3189

fezh
We are making plugin, which will save user weapon when user disconnects, like a bank for saving ammo and zombie class. If player is a zombie we can't get his weapon, so the only way is to get it from ZP
maslyak is offline
maslyak
Junior Member
Join Date: Aug 2008
Old 08-17-2009 , 00:43   Re: Zombie Plague Mod 4.3
#3190

for me it works ;)
Code:
/*================================================================================
  Customization ends here! Yes, that's it. Editing anything beyond
@@ -895,6 +895,9 @@
     register_native("zp_get_user_zombie_class", "native_get_user_zombie_class", 1)
     register_native("zp_get_user_next_class", "native_get_user_next_class", 1)
     register_native("zp_set_user_zombie_class", "native_set_user_zombie_class", 1)
+    register_native("zp_get_user_weapon_pri", "native_get_user_weapon_pri",1)
+    register_native("zp_get_user_weapon_sec", "native_get_user_weapon_sec",1)
+    register_native("zp_set_user_weapon", "native_set_user_weapon",1)
     register_native("zp_get_user_ammo_packs", "native_get_user_ammo_packs", 1)
     register_native("zp_set_user_ammo_packs", "native_set_user_ammo_packs", 1)
     register_native("zp_get_zombie_maxhealth", "native_get_zombie_maxhealth", 1)
@@ -9653,6 +9656,30 @@
     return -1;
 }
 
+// Native: zp_get_user_weapon_pri
+public native_get_user_weapon_pri(id)
+{
+    if(!WPN_AUTO_ON)
+        return -1;
+    return WPN_AUTO_PRI
+}    
+
+// Native: zp_get_user_weapon_sec
+public native_get_user_weapon_sec(id)
+{
+    if(!WPN_AUTO_ON)
+        return -1;
+    return WPN_AUTO_SEC
+}
+
+// Native: zp_set_user_weapon_pri
+public native_set_user_weapon(id, wpn_pri, wpn_sec)
+{
+    WPN_AUTO_ON = 1
+    WPN_AUTO_PRI = wpn_pri
+    WPN_AUTO_SEC = wpn_sec
+}    
+
 /*================================================================================
  [Custom Messages]
 =================================================================================*/
@@ -10791,3 +10818,4 @@
         g_models_targettime = g_models_targettime + g_modelchange_delay
     }
 }
+
maslyak is offline
Closed Thread



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 04:26.


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