Page 1 of 1

Wizardry - The Five Ordeals

Posted: Tue Aug 30, 2022 10:11 am
by Marc

Hi all,

a small table for this game.

Instructions:
go to a dungeon, mark all cheats. kill something. Go back to town and deactivate the "No Damage" cheat. Enter the tavern, and let your characters sleep. Use the cheapest sleeping place. Each round of sleep gives the chosen character one levelup, So you'll sit a while with this. I suggest using the keyboard, so hit A-F-L lots of times.

Or you write a small AutoIt Script for that task, something like that:

Code: Select all

Sleep(3000) ; gives us 3 seconds to activate the game after starting the script

For $i = 1 to 50
	send("a")
	Sleep(30)
	send("f")
	Sleep(30)
	send("l")
	Sleep(30)	
Next	

Features:

  • No Damage

  • always max gold after changing

  • max XP at every change

  • Prevent Status-Change of Characters

  • No Item-Decrease in shop when buying

have fun,
Marc


Re: [STEAM] Wizardry - The Five Ordeals

Posted: Tue Aug 30, 2022 2:33 pm
by justNOPing

Hey! Nice release. Love the AutoIT tip. It's also possible with AutoHotkey, in case anyone will use it:
(Hotkey: F2)

Code: Select all

; Avoids checking empty variables to see if they are environment variables (recommended for all new scripts).
#NoEnv
; Skips the dialog box and replaces the old script automatically
#SingleInstance Force
; Disable KeyHistory
#KeyHistory, 0

#IfWinActive ahk_exe WizardryFoV2.exe ; Check if the following process is active for (hotkeys)
*F2::
Loop, 50
{
	SetKeyDelay,30
    	Send {A down}{A up}  					
	Send {F down}{F up}
	Send {L down}{L up} 
	IfWinNotActive ahk_exe WizardryFoV2.exe 	; If Game window not active
	Break  								; Break the loop
}

p.s. I ain't sure about the name of .exe but it's this one, as far as I remember :?