How to make a Holy Deva Gen/Orb?

smoochy boys on tour

kazzy

Dedicated Member
Dedicated Member
Dec 27, 2005
123
0
62
I know that part but when I paste all of these on QFunction-0 is not working I got error
[@StdModeFunc45]
#CALL [\\QFunction\SummonDeva.txt] @summondeva


;--------------------------------------------------------------

[@summondeva]
{
#IF
CHECKJOB Taos
#ACT
goto @deva
#ELSEACT
give SummonDeva 1
Sendmsg 5 Only.taoist.can.use.this.orb

[@deva]
#IF
CheckLevelEx < 38
#ACT
give SummonDeva 1
Sendmsg 5 You.need.level.38.to.use.this.orb
#ELSEACT
goto @summon

[@summon]
#IF
CHECKSLAVECOUNT > 0
#ACT
give SummonDeva 1
#ELSEACT
RECALLMOB HolyDeva
give SummonDeva 1
}
Also I had only use the top, it was working, but no monster coming out :(
[@StdModeFunc45]
#CALL [\\QFunction\SummonDeva.txt] @summondeva
 
Last edited:
Upvote 0

Ragnar

Hallowed be thy name
Legendary
Golden Oldie
Loyal Member
Jul 20, 2004
5,258
3
295
You need to add the top to the QFunction.txt, and you have to create a new text for the other part of the script. You also need to actually add the mob HolyDeva to your monster DB.
 
Upvote 0

kazzy

Dedicated Member
Dedicated Member
Dec 27, 2005
123
0
62
now I think I will know how to making that Holy Deva, but one more thing "the other new text where I putting in and what I name it too?" Thanks your help Gimpasaurus
 
Upvote 0

Freestyler

Dedicated Member
Dedicated Member
Aug 12, 2003
149
1
115
Britain
does this orb appear in shops? or do we have to put it in a shop oursleves.

also do i need to make an orb in db? and if i do its stdmode 31 but does it need an anicount?
 
Upvote 0

kazzy

Dedicated Member
Dedicated Member
Dec 27, 2005
123
0
62
If you add this item at the shops it will appear on the shop :P Yes you need to make an orb in your DB yes it need a anicount it will be 45. and the other u need ask other person for helping becasue this is what I had learn about it.
 
Upvote 0

stephenking

I HAVE A DREAM!!
Developer
Aug 28, 2005
616
39
175
Netherlands
kazzy said:
[@StdModeFunc45]
#CALL [\\QFunction\SummonDeva.txt] @summondeva

how can you be calling [\qfunction\summondeva.txt] while it should be in your qfunc?

so Qfunc calls Qfunc :( :( beats me lol :P

try this

put this in your Qfunction-0.txt
[@StdModeFunc45]
#CALL [\Market\SummonDeva.txt] @devamain



and make a file called SummonDeva.txt in your \Envir\QuestDiary\Market
and put this in the file

{
[@devamain]
#IF
CHECKJOB Taoist
#ACT
goto @deva
#ELSEACT
give SummonDeva 1
Sendmsg 5 Only.a.taoist.can.use.this

[@deva]
#IF
CheckLevel > 38
#ACT
goto @summondeva
#ELSEACT
give SummonDeva 1
Sendmsg 5 You.need.to.be.level.38.to.use.this

[@summondeva]
#IF
CHECKSLAVECOUNT > 0
#ACT
give SummonDeva 1
#ELSEACT
RECALLMOB HolyDeva
give SummonDeva 1
}
 
Upvote 0