Other Rebirth script a lil help needed

smoochy boys on tour

neo16uk

LOMCN Veteran
Veteran
Aug 20, 2006
563
14
125
as title says
Code:
; ===================================
; Npc Def NPC File : Rebirth-0
; Rebirth npc in BichonProvince
; -----------------------------------
; Name: Rebirth
; Job:
; Map No: 0
; Pos X
; Pos Y
; File name: *removed*
; Comment: Rebirth npc in BichonProvince
;================================================= =
;
[@M10]
#IF
CHECKNAMELIST ..\QuestDiary\Rebirth\Rebirth10.txt
#SAY
Sorry but you have completed all of these rebirths.\
If you are interest i have heard of a rare Master that will teach how to\
become a "Rebirth Elite".\ \
<Tell Me More!!/@Elite> ----- <Close/@exit>

[@Elite]
#SAY
So... You want to know more do you?\
Well The infomation i hold is not free hahaha...\
But if you are willing to help me i will give you the item that\
the Elite Master Rebirth Trainer will require.\ \ \
<Sure I'll Help/@Elite1> ----- <Blow Me!!/@exit>
[@Elite1]
#SAY
Right less of the pointless chit chat and lets get down to the Quest.\
I require alot of items but if you are lucky you can find them easy\
and if not hard luck...\ \
<Show Me The List/@EliteL> ----- <Please Remind Me/@M10> ----- <Changed My Mind/@exit>
[@EliteL]
#SAY
[COLOR=#ff0000]1.WoomaHorn 10\
2.ZumaRelic 10\
3.1BillCreditNote\
4.ZumaDrakePiece\
5.TwistedScroll\
6.FireSoulBlade\
[/COLOR]<Please Remind Me/@M10> ----- <Close/@exit>

am having trouble with bit marked in red problem is i aint quite sure how to get the npc to take the items but remember what its taken and thought i would ask for help to save time
 

ChronicleGM

Dedicated Member
Dedicated Member
Oct 24, 2004
232
1
65
; MAIN CHECK LIST
;------------------------------------


[@EliteL]
#IF
check [101] 1
#SAY
You have given me item 2\
#ELSESAY
I need item 1 <Give item1/@item1>\

#IF
check [102] 1
#SAY
You have given me item 2\
#ELSESAY
I need item 2 <Give item2/@item2>\

; TAKING ITEMS SETTING FLAGS
;------------------------------------------
[@item1]
#IF
check item1 1
#ACT
take item1 1
set [101] 1
gogo @EliteL
#ELSESAY
You dont have item1\


[@item2]
#IF
check item2 1
#ACT
take item2 1
set [102] 1
gogo @EliteL
#ELSESAY
You dont have item2\


----------------------------------------------

The above should work, obviously apply it to all the items.


HTH
Code.
 
Last edited:
Upvote 0

neo16uk

LOMCN Veteran
Veteran
Aug 20, 2006
563
14
125
awesome thanks for that XD

EDIT.......
Solved Thanks bud
 
Last edited:
Upvote 0