Not Help But Info Plz

excluded

Golden Oldie
Golden Oldie
May 31, 2006
555
4
125
Aight peeps this isnt a help calling more of a looking for info:

Im browsing LOMCN self training on npc script making and managed to complete one.

I got a test server so i cud test it straight away... NPC works fine but in m2server on load up it says:

26/03/2010 10:51:26] Quest problem: CheckItem BlackThread 30 Row:368 FileName: .\Envir\Npc_def\Oscar-0.txt
[26/03/2010 10:51:26] Quest problem: CheckItem WhiteThread 25 Row:369 FileName: .\Envir\Npc_def\Oscar-0.txt

ne info on how to get rid of this is great
#it appears to say Quest Problem: so how come the npc works 100%?

Mason
 

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
370
350
26/03/2010 10:51:26] Quest problem: CheckItem BlackThread 30 Row:368 FileName: .\Envir\Npc_def\Oscar-0.txt
[26/03/2010 10:51:26] Quest problem: CheckItem WhiteThread 25 Row:369 FileName: .\Envir\Npc_def\Oscar-0.txt

i would the npc check for this item is wrong
 
Upvote 0

excluded

Golden Oldie
Golden Oldie
May 31, 2006
555
4
125
26/03/2010 10:51:26] Quest problem: CheckItem BlackThread 30 Row:368 FileName: .\Envir\Npc_def\Oscar-0.txt
[26/03/2010 10:51:26] Quest problem: CheckItem WhiteThread 25 Row:369 FileName: .\Envir\Npc_def\Oscar-0.txt

i would the npc check for this item is wrong

So it will still work ok even thou checkitem is wrong then -- so really there is no problem and wont be a prob if it is used in future?
 
Upvote 0

excluded

Golden Oldie
Golden Oldie
May 31, 2006
555
4
125
no pee taking please as this is a self taught script and the first 1 i attempted to do

[@main]
#SAY
Hello <$USERNAME> .. My Name Is Oscar ..\
I Am Equipped With a Skill To Make Skill Books.\
Use My Service As Many Times As You Want.\
I Can Craft You A Skill But First You Must Bring Me,\
Items Needed To Make It .....\\

<Okay/@Next>\\
<No Thanks/@exit>

[@Next]
#SAY
Here Is A List Of Books I Can Craft ....\\

<Mirroring/@Mirror>

[@Mirror]
#SAY
Arrrr Ok I see You Want Mirroring <$USERNAME>..\
Ok Here Is What I Need !!\\
<$BOOKCOVER> x1\
<$CloneElement> x1\
<$RedThread> x50\
<$WhiteThread> x50\\

<I have Your Items.../@mirrordone>\
<I Will Go Find The Items Needed/@exit>\

[@mirrordone]
#SAY
Well Done You Found My Items ....\
Here Is Your Book...\
#ACT
CheckItem BookCover 1
CheckItem CloneElement 1
CheckItem RedThread 50
CheckItem WhiteThread 50
Take BookCover 1
Take CloneElement 1
Take RedThread 50
Take WhiteThread 50
Give Mirroring
Sendmsg 6 "<$USERNAME> Has Crafted Mirroring! Well Done."
#ELSESAY
Sorry You Do Not Have The Items Required ... Look More Please!\
 
Upvote 0

IceMan

Hero's Act Mir 2
Legendary
Apr 17, 2003
8,544
2
370
350
[@main]
#SAY
Hello <$USERNAME> .. My Name Is Oscar ..\
I Am Equipped With a Skill To Make Skill Books.\
Use My Service As Many Times As You Want.\
I Can Craft You A Skill But First You Must Bring Me,\
Items Needed To Make It .....\\

<Okay/@Next>\\
<No Thanks/@exit>

[@Next]
#SAY
Here Is A List Of Books I Can Craft ....\\

<Mirroring/@Mirror>

[@Mirror]
#SAY
Arrrr Ok I see You Want Mirroring <$USERNAME>..\
Ok Here Is What I Need !!\\
<$BOOKCOVER> x1\
<$CloneElement> x1\
<$RedThread> x50\
<$WhiteThread> x50\\

<I have Your Items.../@mirrordone>\
<I Will Go Find The Items Needed/@exit>\

[@mirrordone] < adjusted this for you there the eror was
#IF
CheckItem BookCover 1
CheckItem CloneElement 1
CheckItem RedThread 50
CheckItem WhiteThread 50
#ACT
Take BookCover 1
Take CloneElement 1
Take RedThread 50
Take WhiteThread 50
Give Mirroring
Sendmsg 6 "<$USERNAME> Has Crafted Mirroring! Well Done."
#ELSESAY
Sorry You Do Not Have The Items Required ... Look More Please!\
 
Upvote 0