Help yet again please..

smoochy boys on tour

SoulReaper

Dedicated Member
Dedicated Member
Apr 14, 2004
114
1
115
ok im tryin 2 make a Telly npc for Quest and another one for a Boss Tempel...
but i only need help with one and i work the other one out my self so i learn sumthing heheh... this is what im having trouble with/

[@main]
#SAY
Hello have you got any QuestScrolls?\
<Yes/@p1>

[@p1]
#SAY
ok right so what level are you?\
#IF
checkitem QuestScroll 1
#ACT
goto @QuestScroll1
#ELSESAY
Sorry you Dont have it!\
<Exit/@exit>
#IF
checklevel 15\
#ACT
goto @heslevel15\
#SAY
<Level15-25/@m15-25>\

[@m15-25>]
#ACT
MAPMOVE QUESTMAP1 5 5\
give TownTeleport 1\
#SAY
You have got 5mins to clear room
and find your the Set for lvl 25\
#ACT
map Questmap1 5 5
timerecall 5

when i click it on the Npc it come up with a Box to enter sumthing and gives me a TT, but doesnt telly me... any idea why?
 

Neptune

Golden Oldie
Golden Oldie
Nov 19, 2003
1,473
9
145
Chester :P
try this m8 (sos if it dnt work but giv it a lil go)

[@main]
#SAY
Hello have you got any QuestScrolls?\
<Yes/@p1>

[@p1]
#SAY
ok right so what level are you?\
#IF
checkitem QuestScroll 1
#ACT
goto @QuestScroll1
#ELSESAY
Sorry you Dont have it!\
<Exit/@exit>
#IF
checklevel 15\
#ACT
goto @heslevel15\
#SAY
<Level15-25/@m15-25>\

[@m15-25>]
#ACT
Map QUESTMAP1 5 5\
give TownTeleport 1\
timerecall 5
break
#SAY
You have got 5mins to clear room\
and find your the Set for lvl 25\\
 
Upvote 0

Fire

Golden Oldie
Golden Oldie
Apr 15, 2003
1,302
1
195
Code:
[@main]
#SAY
Hello have you got any QuestScrolls?\
<Yes/@p1>

[@p1]
#IF 
checkitem QuestScroll 1
#ACT
goto @QuestScroll1
#ELSESAY
Sorry you Dont have it!\
<Exit/@exit>

[@QuestScroll1]
#IF 
checklevel 15
#SAY
<Level 15-25/@m15-25>\
#ELSESAY
Sorry you arent level 15

[@m15-25]
#IF
#ACT
timerecall 5
MAPMOVE QUESTMAP1 5 5
give TownTeleport 1
#SAY
You have got 5mins to clear room\
and find your the Set for lvl 25\

Here you go
 
Upvote 0

SoulReaper

Dedicated Member
Dedicated Member
Apr 14, 2004
114
1
115
heya man knwo where i can find the file: QFunction.txt Script

i wanted to add Gems and Orbs but i cant find the file anywhere! :(

thanks for all ur help aswell.
 
Upvote 0

Fire

Golden Oldie
Golden Oldie
Apr 15, 2003
1,302
1
195
SoulReaper said:
heya man knwo where i can find the file: QFunction.txt Script

i wanted to add Gems and Orbs but i cant find the file anywhere! :(

thanks for all ur help aswell.
market_def

20 chars
 
Upvote 0