Need Help Adding Level 50 Glow to Rebirth NPC Mir2 

Joined
Sep 19, 2007
Messages
3
Reaction score
0
hi all ive done wht ive bee told tried to make a NPC for rebirth
Saved it in NPC_Def saved as Rebirth-0

this is wht is inside
; ===================================
; Npc Def NPC File : Rebirth-0
; Rebirth npc in BichonProvince
; -----------------------------------
; Name: Rebirth
; Job:
; Map No: 0
; Pos X 331
; Pos Y 263
; File name: Rebirth-0
; Comment: Rebirth npc in BichonProvince

;================================================= =
;
[@main]
#IF
checklevel < 65
#say
Hey there would you like to be rebirthed same \
as you have done a good job at reaching level 65\ \
<Yes Please/@yes> <No Thank You/@exit>
#ELSESAY
Sorry you need to be level 65 to be rebirthed.

[@yes]
#IF
checklevel < 65
#ACT
SETLEVEL < 10
GIVE SwordOfPower 1
GIVE RebirthWings 1
GIVE RebirthRobe(M) 1
GIVE RebirthRobe(F) 1
GIVE RebirthHelm 1
GIVE RebirthNeck 1
GIVE RebirthWheel 2
GIVE RebirthPara 1
GIVE RebirthPro 1
GIVE RebirthRing 1
GIVE RebirthBoots 1
GIVE RebirthShield 1
GIVE RebirthStone 1
set [500] 1
#SAY
enjoy your new life
#elseSAY
you already have been reborn
Sorted NPC Just Need Help Adding Glow

and if any 1 could help me add the level 50 Glow like automatic or a NPC Please

Please any help would be apriciated
 
Last edited:
@setflag <charnname> <flag> 0 or 1
@setflag danny1617 001 0 or 1 :P

thats the glow flag, havent a clue on how an npc would do it but you could try doing it through @login in either qmanage or qfuntion

@login
#IF
checklevel >49 whatever the level may be but youd also need to find a way to check for rebirth
#ACT
Setflag 001 0
or something along those lines, im sure someone will be able to correct me as i know i may be wrong or maybe you can figure it out from what ive written.
 
Back