ScriptName A101MortimerScript
Short Button
Short Doonce
Short Menu
Begin OnActivate
if isActionRef player == 1
if Menu == 0
MessageBox "Welcome to the world of the living. My name is Mortimer and I am your tourguide ... not. You are now playing in Hardcore Mode. If you like you can change the mode now." "Normal", "Easy", "Cancel"
set Menu to 1
Elseif Menu == 2
MessageBox "You are now playing in Normal Mode. If you like you can change the mode now." "Hardcore", "Easy", "Cancel"
Elseif Menu == 3
MessageBox "You are now playing in Easy Mode. If you like you can change the mode now." "Hardcore", "Normal", "Cancel"
Elseif Menu == 4
MessageBox "You are now playing in Hardcore Mode. If you like you can change the mode now." "Normal", "Easy", "Cancel"
EndIf
endif
End
begin gamemode
Set Button to ( GetButtonPressed + 1 )
If menu == 1
If ( Button == 1 )
Messagebox "You have selected the Normal Mode. NPC's will not be hostile. All the quests are working like they should. You are still part of the Undead faction and you have to feed once per day."
Player.setfactionrank A101Wiedergaengerfaction -1
Set Menu to 2
ElseIf ( Button == 2 )
Messagebox "You have selected the Easy Mode. NPC's won't be hostile. All quests are working like they should. You aren't part of the Undead faction and you don't have to feed."
Player.setfactionrank A101Wiedergaengerfaction -1
Player.setfactionrank Undeadfaction -1
Player.removeSpell A101SoulfoodSpell
Player.removeSpell A101WHunger
Player.removeSpell A101WHunger2
Player.removeSpell A101WHunger3
Player.removeSpell A101WHunger4
Player.removeSpell A101WHunger5
Set Menu to 3
ElseIf ( Button == 3 )
set Menu to 4
Return
EndIf
Elseif Menu == 2
If ( Button == 1 )
Messagebox "You have selected the Hardcore Mode. This means that NPC's will be more or less hostile (they won't attack you but the answers they give you are dependent on disposition (you will get all the normal answers, if your disposition towards the NPC's is over 80)). Undead won't attack you. You also have to feed once per day on a sleeping person."
Player.setfactionrank A101Wiedergaengerfaction 0
Set Menu to 4
ElseIf ( Button == 2 )
Messagebox "You have selected the Easy Mode. NPC's won't be hostile. All quests are working like they should. You aren't part of the Undead faction and you don't have to feed."
Player.setfactionrank A101Wiedergaengerfaction -1
Player.setfactionrank Undeadfaction -1
Player.removeSpell A101SoulfoodSpell
Player.removeSpell A101WHunger
Player.removeSpell A101WHunger2
Player.removeSpell A101WHunger3
Player.removeSpell A101WHunger4
Player.removeSpell A101WHunger5
Set menu to 3
ElseIf ( Button == 3 )
Return
endif
Elseif Menu == 3
If ( Button == 1 )
Messagebox "You have selected the Hardcore Mode. This means that NPC's will be more or less hostile (they won't attack you but the answers they give you are dependent on disposition (you will get all the normal answers, if your disposition towards the NPC's is over 80)). Undead won't attack you. You also have to feed once per day on a sleeping person."
Player.setfactionrank A101Wiedergaengerfaction 0
Set menu to 4
ElseIf ( Button == 2 )
Messagebox "You have selected the Normal Mode. NPC's will not be hostile. All the quests are working like they should. You are still part of the Undead faction and you have to feed once per day."
Player.setfactionrank A101Wiedergaengerfaction -1
Set Menu to 2
ElseIf ( Button == 3 )
Return
endif
endif
End