SCTX |
Scriptname MG00Script
;This script is used with quest MG00Join, as a catch-all for scripting that needs to occur at the beginning of the quest line
;since subsequent quests are not started until after this one is complete
short doonce
short joinedlocation
short Raminustarget
;"joinedlocation" variable used to determine location that player has joined the guild at
;since it influences dialogue of questgivers
; 1 = Anvil
; 2 = Bravil
; 3 = Bruma
; 4 = Cheydinhal
; 5 = Chorrol
; 6 = Leyawiin
; 7 = Skingrad
Begin gamemode
if ( GetStage MG00Join == 50 )
if ( GetStage MG01Destruct == 100 )
if ( GetStage MG02Alter == 100 )
if ( GetStage MG03Illusion == 100 )
if ( GetStage MG04Restore == 100 )
if ( GetStage MG06Bruma == 100 )
if ( GetStage MG07Leyawiin == 100 )
if ( GetStage Mg05Fingers == 100 )
SetStage MG00Join 90
elseif ( GetStage MG05A == 255 )
SetStage MG00Join 90
endif
endif
endif
endif
endif
endif
endif
endif
End |