Hi need help bout X null item

leloush

New member
Messages
269
Points
0
Location
in front of my laptop =)
Emulator
Hello Hercules.

i dont know if im on the right section but please. help me

this is the problem.

a X null card it keeps showing the X null icon/drop sprite even i already added the sprite name for this one actually its the default sprite like this ( À̸§¾ø´ÂÄ«µå ) default card sprite

i already added this to

idnum2descnametable

idnum2displaynametale

idnum2resnametable

and also 

num2itemresnametable

num2itemdescnametable

num2cardillustnametable.

but the thing is it shows the X null sprite

is there any missing? what should i do, i'd tried alot of ways to make it work but still keeps showing the X null icon...

 
Last edited by a moderator:
what client date are you using ?

if you use a client higher then 2012-04-18 +  you have to edit the  Iteminfo.lub file what is located in the System folder of your ro client.

 
what client date are you using ?

if you use a client higher then 2012-04-18 +  you have to edit the  Iteminfo.lub file what is located in the System folder of your ro client.
thanks for the quick response.

btw solve it by myself 

its just a little fault made by me.

thank you very much.
default_biggrin.png
 
default_ani_meow.gif


 
you are using renewal right? did you read https://github.com/HerculesWS/Hercules/blob/master/src/config/renewal.h

/// renewal cast time/// (disable by commenting the line)////// leave this line to enable renewal casting time algorithms/// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats./// example:/// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a/// "fixed cast time" which can only be reduced by specialist items and skills#define RENEWAL_CAST
and in https://github.com/HerculesWS/Hercules/blob/master/db/const.txt

change also bFixedCastrate

Code:
bSkillFixedCast        2051bSkillVariableCast        2052bFixedCastrate        2053bVariableCastrate        2054bSkillUseSP        2055bMagicAtkEle 2056bFixedCast        2057bVariableCast        2058
 
Last edited by a moderator:
you are using renewal right? did you read https://github.com/HerculesWS/Hercules/blob/master/src/config/renewal.h

/// renewal cast time/// (disable by commenting the line)////// leave this line to enable renewal casting time algorithms/// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats./// example:/// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a/// "fixed cast time" which can only be reduced by specialist items and skills#define RENEWAL_CAST
and in https://github.com/HerculesWS/Hercules/blob/master/db/const.txt

change also bFixedCastrate

bSkillFixedCast 2051bSkillVariableCast 2052bFixedCastrate 2053bVariableCastrate 2054bSkillUseSP 2055bMagicAtkEle 2056bFixedCast 2057bVariableCast 2058
yes i knew about the renewal.h thingy

but the thing is in renewal.h this line is the question

/// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a
/// "fixed cast time" which can only be reduced by specialist items and skill
 
 
this should be affected by the berzebub card effect(specialist items)right? or not affected?
 
 
 
about this what is this
 
 
bSkillFixedCast 2051

bSkillVariableCast 2052

bFixedCastrate 2053

bVariableCastrate 2054

bSkillUseSP 2055

bMagicAtkEle 2056

bFixedCast 2057

bVariableCast 2058

@Edit

This is mine

bSkillFixedCast 2051
bSkillVariableCast 2052
bFixedCastrate 2053
bVariableCastrate 2054
bSkillUseSP 2055
bMagicAtkEle 2056
bFixedCast 2057
bVariableCast 2058
 
its the same.. do i need to change this?
 
Last edited by a moderator:
sevenzz23, on 22 Nov 2013 - 18:53, said:

what actually you want to happen? did you also check https://github.com/HerculesWS/Hercules/blob/master/conf/battle/skill.conf?
i knew about this.. but the problem is. the fix casting timeexample:

i cast a energy coat / 5secs no equips

vs

i cast a energy coat / 5secs with +20HG of Caster + Sprint mail + Sprint Shoes + 2 Belt[1] Berze Card

is this normal?

what i want is to remove or the berze card will take affect with the casting time.

im just wondering.. because in other server there is a fixed casting time.

in the same time some of other skills are can be a fast cast if wearing a berzebub or an item that have a reduced effect for casting time.

in my case even i wear a full reduced let us say i wear a total of -200% reduced casting time ( which is berzebub card (bonus bVariableCastRate,-200;)

the result is nothing changes in the casting time.

@edited

ah! got it now.. fixed i just change the bonus bVariableCastRate to bonus bFixedCastRate

 
Last edited by a moderator:
try to change bVariableCastrate to bCastrate.

bVariableCastrate = renewal

bCastrate = pre-renewal..

if you check and compare your item data of pre-renewal and renewal..

this is the comparison

Renewal 

4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-30; },{},{}
Pre-renewal

4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,-30; },{},{}


if you are using item_db.conf

Renewal

{ Id: 4145 AegisName: "Berzebub_Card" Name: "Berzebub Card" Type: 6 Buy: 20 Weight: 10 Loc: 136 Script: <" bonus bVariableCastrate,-30; ">},
Pre-Renewal

Code:
{	Id: 4145	AegisName: "Berzebub_Card"	Name: "Berzebub Card"	Type: 6	Buy: 20	Weight: 10	Loc: 136	Script: <" bonus bCastrate,-30; ">},
 
Last edited by a moderator:
try to change bVariableCastrate to bCastrate.

bVariableCastrate = renewal

bCastrate = pre-renewal..

if you check and compare your item data of pre-renewal and renewal..

this is the comparison

Renewal 

4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-30; },{},{}
Pre-renewal

4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,-30; },{},{}


if you are using item_db.conf

Renewal

{ Id: 4145 AegisName: "Berzebub_Card" Name: "Berzebub Card" Type: 6 Buy: 20 Weight: 10 Loc: 136 Script: <" bonus bVariableCastrate,-30; ">},
Pre-Renewal

{ Id: 4145 AegisName: "Berzebub_Card" Name: "Berzebub Card" Type: 6 Buy: 20 Weight: 10 Loc: 136 Script: <" bonus bCastrate,-30; ">},
thank you for your time sir.. but im not using item_db.conf.

Fixed

 
Back
Top