AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Zombie Plague Mod (https://forums.alliedmods.net/forumdisplay.php?f=126)
-   -   Skins of CSS ZP to CS 1.6 ZP (https://forums.alliedmods.net/showthread.php?t=88515)

alfonso84 03-25-2009 21:28

Skins of CSS ZP to CS 1.6 ZP
 
Hello everyone this post is a collection of skins
but I went very well
[IMG]http://img128.**************/img128/8264/zcss1.jpg[/IMG]

http://www.mediafire.com/download.php?mu0gmujvtjm

[IMG]http://img440.**************/img440/2430/zcss2.jpg[/IMG]

http://www.mediafire.com/download.php?lytzi1vmwmn

[IMG]http://img440.**************/img440/2910/zcss3.jpg[/IMG]

http://www.mediafire.com/download.php?lzzmgiy1gmc

Now some Humans , but this are created by a company of design
The CT and T are in 1 pack

[IMG]http://img135.**************/img135/8526/imagen1f.png[/IMG]

[IMG]http://img264.**************/img264/6084/imagen2z.png[/IMG]


http://www.mediafire.com/download.php?03znmjkzyin

And if you want the weapons same CSS but you have CS1.6
download this pack of models of WEAPONS

http://www.megaupload.com/?d=10ZMF710

Sorry but i don't have images for this skin cause are many arms :|

AlejandroSk 03-25-2009 22:02

Re: Skins of CSS ZP to CS 1.6 ZP
 
nice :wink:

alan_el_more 03-25-2009 22:15

Re: Skins of CSS ZP to CS 1.6 ZP
 
thank you for the contribution ;)

SonicSonedit 03-26-2009 06:29

Re: Skins of CSS ZP to CS 1.6 ZP
 
nice)

PsYChOPaTiQuE 03-26-2009 07:26

Re: Skins of CSS ZP to CS 1.6 ZP
 
good job!
but can you put more zm skin CSS to CS?
thanks
+K

albert123 03-26-2009 08:55

Re: Skins of CSS ZP to CS 1.6 ZP
 
Very good !

alfonso84 03-26-2009 18:47

Re: Skins of CSS ZP to CS 1.6 ZP
 
Someone can create a plugin of " extra life" of 500 for HUMAN an 500 for Zombie :)

PsYChOPaTiQuE 03-26-2009 18:57

Re: Skins of CSS ZP to CS 1.6 ZP
 
already exist :wink:

500 hp for zombies and human :)

Code:

#include <amxmodx>
#include <fun>
#include <zombieplague>
new const item_name[] = "+500 hp"
new g_itemid_buyhp
new hpamount
public plugin_init()
{
 register_plugin("[ZP] Buy Health Points", "1.0", "T[h]E Dis[as]teR")
 hpamount = register_cvar("zp_buyhp_amount", "500")
 g_itemid_buyhp = zp_register_extra_item(item_name, 5, ZP_TEAM_HUMAN & ZP_TEAM_ZOMBIE)
}
public zp_extra_item_selected(id,itemid)
{
 if(!is_user_alive(id))
 
 return PLUGIN_HANDLED;
 
 if(itemid==g_itemid_buyhp)
 {
  if(zp_get_user_ammo_packs(id) < 5)
  {
  client_print(id, print_chat,"[ZP] pas assez d'ammopacks");
  return PLUGIN_HANDLED;
  }
  else
  {
  set_user_health(id,get_user_health(id)+get_pcvar_num(hpamount));
  zp_set_user_ammo_packs(id, zp_get_user_ammo_packs(id) - 5);
  client_print(id, print_chat,"[ZP] You Bought HP!");
  }
 }
 return PLUGIN_CONTINUE;
}
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang3082\\ f0\\ fs16 \n\\ par }
*/



All times are GMT -4. The time now is 22:47.

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