Ok, below is a script i'm working on but can't get 1 thing to work:
---------------------------------------------------------------------
[@boss]
#IF
CHECKNAMELIST \namelists\Started.txt
#SAY
Have you managed to collect the scrolls yet?\
<Yes, I think I have them all!/@scroll1>\
<No not yet, can you remind me which scrolls I need?/@remind>\
#ELSEACT
goto @quest
[@quest]
#IF
CHECKNAMELIST \namelists\Completed.txt
#ACT
goto @boss1
#ELSESAY
A quest is required of you to use my services.\
You will need to bring me different boss scrolls, these\
can be obtained by killing that particular boss. The\
scrolls you need to bring me are as follow:\
<WoomaScroll>, <ZumaScroll>, <BoneScroll>, <MinoScroll> and <DarkScroll>\
Do you think you can get these for me?\
<Yes, I will get them!/@scroll>\
<No, probably not/@exit>\
[@scroll]
#ACT
ADDNAMELIST \namelists\Started.txt
#SAY
Great stuff, please come back to me when you have the scrolls,\
Good luck!\
<Ok, thanks/@exit>\
[@scroll1]
#IF
checkitem ParalysisRing 1
checkitem BenedictionOil 1
checkitem SunPotion(M) 1
#ACT
take ParalysisRing 1
take BenedictionOil 1
take SunPotion(M) 1
ADDNAMELIST \namelists\Completed.txt
goto @completed
#ELSESAY
You do not have all of the scrolls I asked for yet, would you like\
me to remind you which scrolls you require?\
<Yes please/@remind>\
<No thanks, I can remember/@exit>\
[@remind]
The scrolls you need to bring me are as follow:\
<WoomaScroll>, <ZumaScroll>, <BoneScroll>, <MinoScroll> and <DarkScroll>\
<Thanks, I will continue collecting them./@exit>\
[@completed]
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\
[@boss1]
#SAY
These boss teleports will take you directly to Kings Room. Where would\
you like to teleport to?\
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Everything works fine apart from when the npc takes the items from my bag and adds my name to the 'Completed' namelist, when I go to press on the boss part of the npc it goes to:
-------------------------------------------
[@boss]
#IF
CHECKNAMELIST \namelists\Started.txt
#SAY
Have you managed to collect the scrolls yet?\
<Yes, I think I have them all!/@scroll1>\
<No not yet, can you remind me which scrolls I need?/@remind>\
When it should go to @boss1:
[@boss1]
#SAY
These boss teleports will take you directly to Kings Room. Where would\
you like to teleport to?\
--------------------------------------------------------------------------------
Any help would be appreciated
---------- Post added at 01:01 AM ---------- Previous post was at 12:43 AM ----------
Delete this thread or put a [SOLVED] in it, it appears i'm just impatient and lazy to try and figure it out, eventually did it though. For anyone having same problem etc, I put:
[@completed]
#ACT
DELNAMELIST \namelists\Started.txt
#SAY
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\
instead of just:
[@completed]
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\

---------------------------------------------------------------------
[@boss]
#IF
CHECKNAMELIST \namelists\Started.txt
#SAY
Have you managed to collect the scrolls yet?\
<Yes, I think I have them all!/@scroll1>\
<No not yet, can you remind me which scrolls I need?/@remind>\
#ELSEACT
goto @quest
[@quest]
#IF
CHECKNAMELIST \namelists\Completed.txt
#ACT
goto @boss1
#ELSESAY
A quest is required of you to use my services.\
You will need to bring me different boss scrolls, these\
can be obtained by killing that particular boss. The\
scrolls you need to bring me are as follow:\
<WoomaScroll>, <ZumaScroll>, <BoneScroll>, <MinoScroll> and <DarkScroll>\
Do you think you can get these for me?\
<Yes, I will get them!/@scroll>\
<No, probably not/@exit>\
[@scroll]
#ACT
ADDNAMELIST \namelists\Started.txt
#SAY
Great stuff, please come back to me when you have the scrolls,\
Good luck!\
<Ok, thanks/@exit>\
[@scroll1]
#IF
checkitem ParalysisRing 1
checkitem BenedictionOil 1
checkitem SunPotion(M) 1
#ACT
take ParalysisRing 1
take BenedictionOil 1
take SunPotion(M) 1
ADDNAMELIST \namelists\Completed.txt
goto @completed
#ELSESAY
You do not have all of the scrolls I asked for yet, would you like\
me to remind you which scrolls you require?\
<Yes please/@remind>\
<No thanks, I can remember/@exit>\
[@remind]
The scrolls you need to bring me are as follow:\
<WoomaScroll>, <ZumaScroll>, <BoneScroll>, <MinoScroll> and <DarkScroll>\
<Thanks, I will continue collecting them./@exit>\
[@completed]
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\
[@boss1]
#SAY
These boss teleports will take you directly to Kings Room. Where would\
you like to teleport to?\
-------------------------------------------------------------------------------------------------------------------------------------------------------------
Everything works fine apart from when the npc takes the items from my bag and adds my name to the 'Completed' namelist, when I go to press on the boss part of the npc it goes to:
-------------------------------------------
[@boss]
#IF
CHECKNAMELIST \namelists\Started.txt
#SAY
Have you managed to collect the scrolls yet?\
<Yes, I think I have them all!/@scroll1>\
<No not yet, can you remind me which scrolls I need?/@remind>\
When it should go to @boss1:
[@boss1]
#SAY
These boss teleports will take you directly to Kings Room. Where would\
you like to teleport to?\
--------------------------------------------------------------------------------
Any help would be appreciated
---------- Post added at 01:01 AM ---------- Previous post was at 12:43 AM ----------
Delete this thread or put a [SOLVED] in it, it appears i'm just impatient and lazy to try and figure it out, eventually did it though. For anyone having same problem etc, I put:
[@completed]
#ACT
DELNAMELIST \namelists\Started.txt
#SAY
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\
instead of just:
[@completed]
Thankyou ever so much for collecting these scrolls for me. As a reward,\
you will now be able to use my boss teleport system.\
Would you like to see which bosses I can teleport you to?\
<Yes please/@b>\
<No thanks, I will look at them later/@exit>\
