item_db help!

DiversityRO

New member
Messages
14
Points
0
Hi. Why is it that when I make for example the Variant Shoes to Job : All:True it still cant be worn by ninjas

{
    Id: 2423
    AegisName: "Variant_Shoes"
    Name: "Variant Shoes"
    Type: 5
    Buy: 20
    Weight: 500
    Def: 3
    Job: 0xFFFFFFFF
    Upper: 2
    Loc: 64
    EquipLv: 85
    Script: <"
        bonus bMaxHPrate,20-getrefine();
        bonus bMaxSPrate,20-getrefine();
        bonus bDef,getrefine()/2;
    ">
},
 
 
Like this.
 
if you want it for all jobs you don't need to add it here (defaults to all job if no statement is given)

 
 
    Name: "Variant Shoes"
    Type: 5
    Buy: 20
    Weight: 500
    Def: 3
    Job: {                 <---------------------------------
        All: true
        Novice: false
    }
    Upper: 2
    Loc: 64
    EquipLv: 85
    Trade: {
        nodrop: true
        notrade: true
        noselltonpc: true
        nocart: true
        nogstorage: true
        nomail: true
        noauction: true
    }
    Script: <"
        bonus bMaxHPrate,20-getrefine();
        bonus bMaxSPrate,20-getrefine();
        bonus bDef,getrefine()/2;
    ">

like this it have a job
 
if you want it for all jobs you don't need to add it here (defaults to all job if no statement is given)
Uhm what do you mean by this? xD
i mean, if you want ALL classes to use it, remove the "Job" part entirely because by default, all can use. In your case the UPPER was the issue btw. but this can be removed too

Code:
{
    Id: 2423
    AegisName: "Variant_Shoes"
    Name: "Variant Shoes"
    Type: 5
    Buy: 20
    Weight: 500
    Def: 3
    Loc: 64
    EquipLv: 85
    Script: <"
        bonus bMaxHPrate,20-getrefine();
        bonus bMaxSPrate,20-getrefine();
        bonus bDef,getrefine()/2;
    ">
},
 
if you want it for all jobs you don't need to add it here (defaults to all job if no statement is given)
Uhm what do you mean by this? xD
i mean, if you want ALL classes to use it, remove the "Job" part entirely because by default, all can use. In your case the UPPER was the issue btw. but this can be removed too

{
Id: 2423
AegisName: "Variant_Shoes"
Name: "Variant Shoes"
Type: 5
Buy: 20
Weight: 500
Def: 3
Loc: 64
EquipLv: 85
Script: <"
bonus bMaxHPrate,20-getrefine();
bonus bMaxSPrate,20-getrefine();
bonus bDef,getrefine()/2;
">
},

Still not working. I tried it already.
 
Upper: 63

make sure your ninja is actually level 85

 
Last edited by a moderator:
Back
Top