Wizardry - The Five Ordeals

The main forum for Cheat Table database collections.


Moderator: Table Moderator

Post Reply
User avatar
Marc
Table Master
Table Master
Journeyman Hacker
Journeyman Hacker
Posts: 210
Joined: Sat Jul 23, 2022 2:08 am
Answers: 0
x 318

Wizardry - The Five Ordeals

Post 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

Attachments
Wizardry - The Five Ordeals.CT
(23.07 KiB) Downloaded 731 times

Tags:

User avatar
justNOPing
Novice Hacker
Novice Hacker
Posts: 26
Joined: Mon Aug 08, 2022 10:02 am
Answers: 0
Location: newmem
x 19

Re: [STEAM] Wizardry - The Five Ordeals

Post 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 :?


Post Reply