Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 179
Search took 0.01 seconds.
Search: Posts Made By: SergiCruz
Forum: Zombie Plague Mod 05-25-2015, 19:19
Replies: 7
Views: 21,992
Posted By SergiCruz
Re: Zombie Plague Mod 4.3 With Bots

https://forums.alliedmods.net/misc.php?do=showrules

"Steam Cracks

You do not need to own the game on Steam to participate in these forums. However, publicizing violations of the Digital...
Forum: Zombie Plague Mod 05-24-2015, 06:54
Replies: 7
Views: 21,992
Posted By SergiCruz
Re: Zombie Plague Mod 4.3 With Bots

So you uploaded a Zombie Plague with Dual Protocol installed... nice. Admins will love it
Forum: Zombie Plague Mod 05-24-2015, 06:41
Replies: 1
Views: 568
Posted By SergiCruz
Re: [ZP4.3] Block infection and call takedamage

Ok, it's solved. If anyone is interested in the solution I found, here it is (zombie_plague40.sma):
At the beginning

new cvar_new_infection // For easily enabling/disabling infection block
new...
Forum: Zombie Plague Mod 05-23-2015, 16:15
Replies: 1
Views: 568
Posted By SergiCruz
[ZP4.3] [SOLVED] Block infection and call takedamage

I'm making a plugin for a "more realistic infection" for zp4.3, so I need to avoid instant infection. I want zombies to kill humans, and then the humans will respawn as zombies. (I know it would be...
Forum: Zombie Plague Mod 05-10-2015, 16:50
Replies: 6
Views: 1,414
Posted By SergiCruz
Re: [HELP]Make bot choose random human classes zp4.3fix5a

https://forums.alliedmods.net/showthread.php?t=243959
Asking here is the only thing I can suggest now
Forum: Zombie Plague Mod 05-10-2015, 16:31
Replies: 6
Views: 1,414
Posted By SergiCruz
Re: [HELP]Make bot choose random human classes zp4.3fix5a

Maybe this. I know cz bots are a bit problematic...
Forum: Zombie Plague Mod 05-10-2015, 15:54
Replies: 6
Views: 1,414
Posted By SergiCruz
Re: [HELP]Make bot choose random human classes zp4.3fix5a

Try adding this to your code. It should work with any kind of bots.

#define MAX_HUMAN_CLASS 8 // Set to the number of classes you have
#define TASK_SET_CLASS 19825
#define ID_SET_CLASS (taskid -...
Forum: Zombie Plague Mod 05-07-2015, 10:07
Replies: 12
Suggestion / Subplugin Request HP evolution
Views: 1,933
Posted By SergiCruz
Re: HP evolution

I used a task because there's some time delay between spawn and infection, so I thought zp_get_user_zombie could be called before player's infection.
The ID isn't needed because it's used just...
Forum: Zombie Plague Mod 05-06-2015, 16:04
Replies: 12
Suggestion / Subplugin Request HP evolution
Views: 1,933
Posted By SergiCruz
Re: HP evolution

Try this
Forum: Zombie Plague Mod 05-05-2015, 13:12
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

[ZP4.3|EXP] Class: Mutant / Regenerator
I made a zombie class based on this code from you (https://forums.alliedmods.net/showthread.php?t=159424).
It's adapted to this level API

Features:
++...
Forum: Zombie Plague Mod 05-04-2015, 16:42
Replies: 3
Views: 2,714
Posted By SergiCruz
Re: [ZP] Class: Nightcrawler + [ZP] Addon: Nemesis to Nightcrawler

Post updated. Added an addon for the nemesis. Also, have a look at 'discussion'.
Forum: Zombie Plague Mod 04-28-2015, 11:22
Replies: 1,107
Views: 236,512
Posted By SergiCruz
Re: [ZP] List of Modified + Requested Plugins

Look at yokomo's code:

public logevent_round_end()
server_cmd("bot_stop 1")

public zp_round_started()
server_cmd("bot_stop 0")

as PodBots haven't got command such as "bot_stop", there's...
Forum: Zombie Plague Mod 04-28-2015, 10:59
Replies: 1,107
Views: 236,512
Posted By SergiCruz
Re: [ZP] List of Modified + Requested Plugins

Thanks you two, I'm going to check this last one, i didn't find it while searching... If it doesn't work with podbot I think I will try using czbots
Forum: Zombie Plague Mod 04-26-2015, 14:52
Replies: 1,107
Views: 236,512
Posted By SergiCruz
Re: [ZP] List of Modified + Requested Plugin (3/1/2015)

Hi! I'm sorry for bothering you. I'm really looking forward to finding a plugin to prevent bots fighting each others before the round starts. This plugin by yokomo...
Forum: Zombie Plague Mod 04-25-2015, 14:01
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

[ZP4.3 + XPMOD] Extra item: Damage multiplier for one round

Cvars:
xp_extra_multidmg_level 10 // Minimum level for using the item
xp_extra_multidmg_value 2 // Damage multiplier (Integer!!)...
Forum: Zombie Plague Mod 04-21-2015, 09:54
Replies: 203
Views: 130,820
Posted By SergiCruz
Re: Zombie Plague Special 2.3 (10 april 2015)

Add zp_zclasses40.amxx to your plugins-zplague and tell us if that fixed the error
Forum: Zombie Plague Mod 04-19-2015, 16:31
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

Yes, it's easy :) This is for zp4.3

public zp_extra_item_selected(id, itemid)
{
if(itemid == g_itemid) // Your item id
{
if(xp_get_user_level(id) < 10) // The level you want
{...
Forum: Zombie Plague Mod 04-18-2015, 05:00
Replies: 3
Views: 877
Posted By SergiCruz
Re: [REQ] Jump-Grenade with limit per round

Per round & player

#define LIMIT_PER_ROUND_PLAYER 10 // Limit per round and player value.
new g_bombs_bought[33] // Global variable that indicates the number of bombs that have been bought in a...
Forum: Zombie Plague Mod 04-17-2015, 13:28
Replies: 3
Views: 877
Posted By SergiCruz
Re: [REQ] Jump-Grenade with limit per round

This is basically what you have to add / edit:

#define LIMIT_PER_ROUND 10 // Limit per round value.
new g_bombs_bought // Global variable that indicates the number of bombs that have been bought...
Forum: Zombie Plague Mod 04-17-2015, 11:51
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

[XP] Zombie class: NST Class Speed / Light
[XP] Zombie class: NST CLass Tank (Edited 17/04/2015 23:23)
[XP] Zombie class: Leech (Edited 18/04/2015 0:06)

Description
Classes adapted / created...
Forum: Zombie Plague Mod 04-15-2015, 09:09
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

Awesome, many thanks. :-)
What about making something like a "list of subplugins" in the future? I will edit NST zombie classes you posted long ago...
Forum: Zombie Plague Mod 04-14-2015, 12:44
Replies: 39
Views: 17,288
Posted By SergiCruz
Re: [ZP43Fix5a|ZP50] Addon: Stats, ExpMod & Ranking System.

I'm using this plugin in my server so I made a quite simple rewards system: health, armor, ammopacks, damage and items (each one can be enabled/disabled with a cvar).

As I said, it is really...
Forum: Zombie Plague Mod 04-10-2015, 04:38
Replies: 203
Views: 130,820
Posted By SergiCruz
Re: Zombie Plague Special 2.2 (1 april 2015)

Most of them are private plugins of my server, those are the ones which were taken from other authors:
- NST Zombie Class Tank by NST. Speed boost hability now doesn't change its speed.
- NST...
Forum: Zombie Plague Mod 04-08-2015, 20:55
Replies: 3
Views: 2,714
Posted By SergiCruz
[ZP] Class: Nightcrawler + [ZP] Addon: Nemesis to Nightcrawler

Idea from: Zombie Plague Special (https://forums.alliedmods.net/showthread.php?t=260845)
This is a really simple zombie class. It's 99% invisible but it becomes visible when it's hurt. It has a very...
Forum: Zombie Plague Mod 04-08-2015, 10:55
Replies: 203
Views: 130,820
Posted By SergiCruz
Re: Zombie Plague Special 2.2 (1 april 2015)

(1) I tested it. 60 minutes gameplay and I played every single mod, it was wonderful. No errors at all, < lag than zpa (I think). A very good experience with my friends in LAN (and some bots).
To...
Showing results 1 to 25 of 179

 
Forum Jump

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


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