Adding War Skill to TAOIST LEVEL 2k

Join Discord

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
Im trying to make a npc that checks lvl 2k and class taoist then adds warrior skill Halfmoon, but its not working,
It checks class and level perfectly but wont give the skill it says added but doesnt actually give the skill... Is it because can you not give another classes skill out via NPC?
can anyone look into this script.. thanks



[@main]
#IF
CHECKLEVEL 2000
CHECKJOB Taoist
#SAY
You Learned Skill Halfmoon\
<Exit/@Exit>
#ACT
HLSCRIPTCMD ADDSKILL Halfmoon
#ELSESAY
you are either not level 2000\
Or you aren't a Taoist\
<Exit/@Exit>\
 
Last edited:

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
Code:
[@Main]
#IF
CheckLevel 2000
CheckJob Taoist

#ACT
HLSCRIPTCMD CHANGEJOB 0
HLSCRIPTCMD ADDSKILL Halfmoon
HLSCRIPTCMD CHANGEJOB 2
#SAY
You Learned Skill Halfmoon\
<Exit/@Exit>

#ELSESAY
you are either not level 2000\
Or you aren't a Taoist\
<Exit/@Exit>\

Not tried the other one, but you could try this..
 
Upvote 0

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
Code:
[@Main]
#IF
CheckLevel 2000
CheckJob Taoist
 
#ACT
HLSCRIPTCMD CHANGEJOB 0
HLSCRIPTCMD ADDSKILL Halfmoon
HLSCRIPTCMD CHANGEJOB 2
#SAY
You Learned Skill Halfmoon\
<Exit/@Exit>
 
#ELSESAY
you are either not level 2000\
Or you aren't a Taoist\
<Exit/@Exit>\

Not tried the other one, but you could try this..

Same Thing happens with thing one checks job and level perfectly but doesnt give the skill, only says it does but doesnt really give it, I Guess its not possible to give another classes skill out via npc
 
Upvote 0

Painkiller

LOMCN Veteran
Veteran
Loyal Member
Feb 11, 2006
316
2
65
couldnt u just change it from BLAHBLAH BLAH ADDSKILL HALFMOON

to GIVE TaoHalfmoon

also

have you added the book to DB???
 
Upvote 0

Somebody Else

Dedicated Member
Dedicated Member
Jun 24, 2005
114
0
63
It's not the book, it's the actual skill itself, there is no book involved. Plus that doesn't work anyways, I don't think, since the book name is tied specifically to the skill name. Maybe that does work, I dunno :P
 
Last edited:
Upvote 0

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
yeah it wont let u make another book... i tried GIVE halfmoon doesnt work either just tested
 
Upvote 0

idaBigA

Holley Mir 3!!
VIP
Oct 28, 2003
1,966
110
310
Stoke, UK
You have to put the name of the Book..

HLSCRIPTCMD ADDSKILL HALFMOON(MANUAL)

If you read the updates file that comes with the files, it tells you (in dodgy chinese :P)
 
Upvote 0

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
wooo works thanks alot mate
is it possible to add a npc like this for null?
 
Last edited:
Upvote 0

Cricket1650

Dedicated Member
Dedicated Member
Apr 25, 2008
66
0
52
he's saying make an npc that adds null to a weapon. the null makes a magic effect looking thing whever you hit something if u didnt know that :P
 
Last edited:
Upvote 0

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
like the ingame GM null command is

@weaponatom 22 1

Is it possible to give null/atom via npc?
 
Upvote 0

Somebody Else

Dedicated Member
Dedicated Member
Jun 24, 2005
114
0
63
Yep, just take a look at the ChangeWeaponAtom NPC, basically you just change the element to one that isn't 1-7 and you'll get the funky effects.
 
Upvote 0

KingOfKings

LOMCN Veteran
Veteran
Loyal Member
Mar 18, 2008
275
2
65
HLSCRIPTCMD ITEMREMAKEEQU 1 11 22
HLSCRIPTCMD ITEMREMAKEEQU 1 12 1

Try that

We tryed that it only works for adding Element attack
But not for null
Also if you know the npc command to add Adv Element to armour/kit via npc that would be very helpful too
 
Upvote 0

Geordiehc

Mad Dog Geo
VIP
Jul 4, 2007
2,827
49
195
Redditch, UK
i searched for like 30 mins last bight to find this thread by search function and manually going page to page and could not find it >< i thought it had been deleted
 
Upvote 0