TheDarkRuler
Hortator
Code:
[SIZE=2]scn AAAGeistFraction[/SIZE]
[SIZE=2]Begin GameMode[/SIZE]
[SIZE=2]if getStageDone MQ01 90[/SIZE]
[SIZE=2]if [B]player.[/B]getIsRace DarkElf[/SIZE]
[SIZE=2]player.setFactionRank UndeadFaction 0[/SIZE]
[SIZE=2]stopQuest AAAGeistFraction[/SIZE]
[SIZE=2]endif[/SIZE]
[SIZE=2]endif[/SIZE]
[SIZE=2]end[/SIZE]
(EDIT)
Würde ihn sogar noch ergänzen, da ich gehört habe, dass Returns in GameMode-Blöcken besser sind.
Mach ihn daher mal so.
Code:
[SIZE=2]scn AAAGeistFraction[/SIZE]
[SIZE=2]Begin GameMode[/SIZE]
[SIZE=2]if getStageDone MQ01 90[/SIZE]
[SIZE=2]if [B]player.[/B]getIsRace DarkElf[/SIZE]
[SIZE=2]player.setFactionRank UndeadFaction 0[/SIZE]
[SIZE=2]stopQuest AAAGeistFraction[/SIZE]
[SIZE=2]else
return
endif[/SIZE]
else
return
[SIZE=2]endif[/SIZE]
[SIZE=2]end[/SIZE]