Hi, yesterday i asked iceman to provide me with two npcs.
1. A variable full kit crafter which needs and item called Gem before it can be used.
2. A 100% success npc that requires an item called Orb before it can be used.
Now the trouble im getting is:
1. On npc number one the gem is taken however the npc can still be used without the gem, also it doesnt full kit.
2. On npc number two the orb is also taken however this npc can also be used without the need for the orb. Also this is not a 100% or a full kit crafter.
ive only posted cos im crap with npcs and require help, not to be told im a noob and need to search
1. Script one
[@main]
Welcome <$USERNAME>,I'm Dale.\
I'm the Youngest Hero of <$SERVERNAME>,\
Here if you have the Tools i will,\
UpGrade there item set!\
<Sure/@go1> <Whats Needed/@go2> <Exit/@exit>\
[@go2]
#Say
Make sure the have tools needed for your Class!\
Warrior :<Need/@help1>\
Wizard :<Need/@help2>\
Taoist :<Need/@help3>\
[@help1]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@help2]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@help3]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@go1]
Please Stat your Class.\
Warrior <Caaft/@next>\
Wizard <Caaft/@next2>\
Taoist <Caaft/@next4>\
[@next]
#IF
CHECKITEM Gem 1
CheckJob Warrior
#ACT
goto @next1
#ELSEACT
goto @wrong
[@next1]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 2 0 1 1
UPGRADEITEMEX 7 2 0 1 1
UPGRADEITEMEX 3 2 0 1 1
UPGRADEITEMEX 1 0 0 8 1
UPGRADEITEMEX 0 2 0 1 1
goto @alldone
[@next2]
#IF
CHECKITEM Gem 1
CheckJob Wizard
#ACT
goto @next3
#ELSEACT
goto @wrong
[@next3]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 3 0 1 1
UPGRADEITEMEX 7 3 0 1 1
UPGRADEITEMEX 3 3 0 1 1
UPGRADEITEMEX 1 1 0 8 1
UPGRADEITEMEX 0 3 0 1 1
goto @alldone
[@next4]
#IF
CHECKITEM Gem 1
CheckJob Taoist
#ACT
goto @next5
#ELSEACT
goto @wrong
[@next5]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 4 0 1 1
UPGRADEITEMEX 7 4 0 1 1
UPGRADEITEMEX 3 4 0 1 1
UPGRADEITEMEX 1 2 0 8 1
UPGRADEITEMEX 0 4 0 1 1
goto @alldone
[@alldone]
You set Upgrade is Done!\
[@wrong]
Sorry your the Wrong Class!\
Or you do not have the item i requested\
Script two
[@main]
Welcome <$USERNAME>,I'm Dale.\
I'm the Youngest Hero of <$SERVERNAME>,\
Here if you have the Tools i will,\
UpGrade there item set! Will need a Orb.\
<Sure/@go1> <Exit/@exit>\
[@go1]
Please Stat your Class.\
Warrior <Caaft/@next>\
Wizard <Caaft/@next2>\
Taoist <Caaft/@next4>\
[@next]
#IF
CHECKITEM Orb 1
CheckJob Warrior
#ACT
goto @next1
#ESLEACT
goto @wrong
[@next1]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 2 0 1 1
UPGRADEITEMEX 7 2 0 1 1
UPGRADEITEMEX 3 2 0 1 1
UPGRADEITEMEX 1 0 0 8 1
UPGRADEITEMEX 0 2 0 1 1
goto @alldone
[@next2]
#IF
CHECKITEM Orb 1
CheckJob Wizard
#ACT
goto @next3
#ESLEACT
goto @wrong
[@next3]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 3 0 1 1
UPGRADEITEMEX 7 3 0 1 1
UPGRADEITEMEX 3 3 0 1 1
UPGRADEITEMEX 1 1 0 8 1
UPGRADEITEMEX 0 3 0 1 1
goto @alldone
[@next4]
#IF
CHECKITEM Orb 1
CheckJob Taoist
#ACT
goto @next5
#ESLEACT
goto @wrong
[@next5]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 4 0 1 1
UPGRADEITEMEX 7 4 0 1 1
UPGRADEITEMEX 3 4 0 1 1
UPGRADEITEMEX 1 2 0 8 1
UPGRADEITEMEX 0 4 0 1 1
goto @alldone
[@alldone]
You set Upgrade is Done!\
[@wrong]
Sorry your the Wrong Class!\
Or you do not have the item i requested\
1. A variable full kit crafter which needs and item called Gem before it can be used.
2. A 100% success npc that requires an item called Orb before it can be used.
Now the trouble im getting is:
1. On npc number one the gem is taken however the npc can still be used without the gem, also it doesnt full kit.
2. On npc number two the orb is also taken however this npc can also be used without the need for the orb. Also this is not a 100% or a full kit crafter.
ive only posted cos im crap with npcs and require help, not to be told im a noob and need to search
1. Script one
[@main]
Welcome <$USERNAME>,I'm Dale.\
I'm the Youngest Hero of <$SERVERNAME>,\
Here if you have the Tools i will,\
UpGrade there item set!\
<Sure/@go1> <Whats Needed/@go2> <Exit/@exit>\
[@go2]
#Say
Make sure the have tools needed for your Class!\
Warrior :<Need/@help1>\
Wizard :<Need/@help2>\
Taoist :<Need/@help3>\
[@help1]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@help2]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@help3]
#say
You must have the following items,\
For your Class.\
1.Gem\
<Back/@main>
[@go1]
Please Stat your Class.\
Warrior <Caaft/@next>\
Wizard <Caaft/@next2>\
Taoist <Caaft/@next4>\
[@next]
#IF
CHECKITEM Gem 1
CheckJob Warrior
#ACT
goto @next1
#ELSEACT
goto @wrong
[@next1]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 2 0 1 1
UPGRADEITEMEX 7 2 0 1 1
UPGRADEITEMEX 3 2 0 1 1
UPGRADEITEMEX 1 0 0 8 1
UPGRADEITEMEX 0 2 0 1 1
goto @alldone
[@next2]
#IF
CHECKITEM Gem 1
CheckJob Wizard
#ACT
goto @next3
#ELSEACT
goto @wrong
[@next3]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 3 0 1 1
UPGRADEITEMEX 7 3 0 1 1
UPGRADEITEMEX 3 3 0 1 1
UPGRADEITEMEX 1 1 0 8 1
UPGRADEITEMEX 0 3 0 1 1
goto @alldone
[@next4]
#IF
CHECKITEM Gem 1
CheckJob Taoist
#ACT
goto @next5
#ELSEACT
goto @wrong
[@next5]
#IF
CHECKITEM Gem 1
#ACT
take Gem 1
UPGRADEITEMEX 5 4 0 1 1
UPGRADEITEMEX 7 4 0 1 1
UPGRADEITEMEX 3 4 0 1 1
UPGRADEITEMEX 1 2 0 8 1
UPGRADEITEMEX 0 4 0 1 1
goto @alldone
[@alldone]
You set Upgrade is Done!\
[@wrong]
Sorry your the Wrong Class!\
Or you do not have the item i requested\
Script two
[@main]
Welcome <$USERNAME>,I'm Dale.\
I'm the Youngest Hero of <$SERVERNAME>,\
Here if you have the Tools i will,\
UpGrade there item set! Will need a Orb.\
<Sure/@go1> <Exit/@exit>\
[@go1]
Please Stat your Class.\
Warrior <Caaft/@next>\
Wizard <Caaft/@next2>\
Taoist <Caaft/@next4>\
[@next]
#IF
CHECKITEM Orb 1
CheckJob Warrior
#ACT
goto @next1
#ESLEACT
goto @wrong
[@next1]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 2 0 1 1
UPGRADEITEMEX 7 2 0 1 1
UPGRADEITEMEX 3 2 0 1 1
UPGRADEITEMEX 1 0 0 8 1
UPGRADEITEMEX 0 2 0 1 1
goto @alldone
[@next2]
#IF
CHECKITEM Orb 1
CheckJob Wizard
#ACT
goto @next3
#ESLEACT
goto @wrong
[@next3]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 3 0 1 1
UPGRADEITEMEX 7 3 0 1 1
UPGRADEITEMEX 3 3 0 1 1
UPGRADEITEMEX 1 1 0 8 1
UPGRADEITEMEX 0 3 0 1 1
goto @alldone
[@next4]
#IF
CHECKITEM Orb 1
CheckJob Taoist
#ACT
goto @next5
#ESLEACT
goto @wrong
[@next5]
#IF
CHECKITEM Orb 1
#ACT
take Orb
UPGRADEITEMEX 5 4 0 1 1
UPGRADEITEMEX 7 4 0 1 1
UPGRADEITEMEX 3 4 0 1 1
UPGRADEITEMEX 1 2 0 8 1
UPGRADEITEMEX 0 4 0 1 1
goto @alldone
[@alldone]
You set Upgrade is Done!\
[@wrong]
Sorry your the Wrong Class!\
Or you do not have the item i requested\
Last edited by a moderator:
