Quest Help

Play Now

God33344

Dedicated Member
Dedicated Member
Mar 1, 2005
72
1
34
hey guys im wondering what the command is to make a quest where
the npc will send u away to kill mobs until a popup comes up to tell u that uve done the quest and to go bk to the npc. how would i do this x[?

ty in advance
 

paul.obrien

LOMCN Veteran
Veteran
Aug 28, 2008
453
4
45
hey guys im wondering what the command is to make a quest where
the npc will send u away to kill mobs until a popup comes up to tell u that uve done the quest and to go bk to the npc. how would i do this x[?

ty in advance
you will have to use global variables to do this

tell me what quest you want and the mobs you want used.
ill write you a quick one you can edit
 
Upvote 0

transporter

LOMCN Veteran
Veteran
Jul 12, 2008
608
8
105
Darlington
Don`t have to use Variables.

You could use something like this in Q-Function.


[@ONKILLMOB(OmaWarrior)]
#IF
CHECK [120] 1
RANDOMEX 300 = 5
#ACT
MESSAGEBOX "You have now proven to me your ability, return to me."
SET [121] 1
SET [120] 0
BREAK
#ELSEACT
BREAK

You would first need an NPC to create a flag to the character for the quest to start.

#ACT
SET [120] 1
#SAY
Go and prove yourself to me. \
<I will/@exit>\
 
Upvote 0

Bon

Legend
Legendary
Jul 29, 2004
6,741
342
330
Kent, UK
RANDOMEX 300 = 5

Whats the difference between RADNOMEX and just plain RANDOM 40?

im guessin that command picks a number between 0 and 300, and if 5 then its true?

can u do like RANDOMEX 300 > 150 lol?

still.. random 40 seems easier


you will have to use global variables to do this

tell me what quest you want and the mobs you want used.
ill write you a quick one you can edit
global? lol u idiot global is for every1..

ud use human variables




for an accurate amount of mobs to kill, ud have to setup a variables script, for a random, like transporters... randoms are fine. Its good to use both
 
Upvote 0

God33344

Dedicated Member
Dedicated Member
Mar 1, 2005
72
1
34
thanks for ur help guys, is there not like a guide i could use for this? been searching but cant seem to find it, if ne1 got a quick link to it, itd be much appreciated or if sum1 wud get me started?

the mob ide like it to be is called HellBornArcher
thanks in advance :)
 
Last edited:
Upvote 0

God33344

Dedicated Member
Dedicated Member
Mar 1, 2005
72
1
34
finally figured it out lol, feel like a spastic now i have cos its easy ;/

thanks you guys you really helped.

if any1 else doesnt understand send me a pm and ill explain thanks agen. peace :tongue1:
 
Upvote 0