Guillotine Cross Poison Duration

PunkBuster

New member
Messages
216
Points
0
I need to edit the duration of GX Poisons. Which numbers on which src file do I have to edit?

 
This is an urgent request. I can't have 5 minutes durations on my GX poisons. Where do I change them?

 
Doesn't htis change the duration in which the weapon is poisoned, rather than the poison duration?

 
maybe I mistook your meaning, what kind of poison do you mean?
default_p_conf.gif


 
The GX poisons, like Leech End and Magic Mushroom. They current last over 5 minutes, but I'd like to give them much lower durations.

 
The GX poisons, like Leech End and Magic Mushroom. They current last over 5 minutes, but I'd like to give them much lower durations.
this?

item_db.conf

{

 Id: 12718

 AegisName: "Poison_Leech"

 Name: "Leech End"

 Type: 0

 Buy: 2

 Weight: 20

 Upper: 63

 Script: <" if(rand(10000)<10) sc_start SC_LEECHESEND,300000,0; ">

},

and

Code:
{	Id: 12723	AegisName: "Poison_Laughing"	Name: "Magic Mushroom"	Type: 0	Buy: 2	Weight: 20	Upper: 63	Script: <" if(rand(10000)<10) sc_start SC_MAGICMUSHROOM,300000,0; ">},
 
skill_cast_db.txt

//-- GC_POISONINGWEAPON

2027,0,1000,0,60000:120000:180000:240000:300000,300000,0
Changing the last 300000 changed the duration when I tried. Thanks for the hints.

Changing it on my item scripts did nothing, though.

 
Back
Top