<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="16">
  <Forms>
    <frmExample Class="TCEForm" Encoding="Ascii85">Rgt{J!Y}wtO#(p4Kr3{/+%()@RH.iRN(poV3Q^6/(d(v]I/^pSHM}LJv)M1I(R=O6b,4_kzjKZ!213DhF{4D4zF.El=nFAz!juzeu3*FkH=#c$cz.mF,6*+se.TcKoT!8OjhrbH35aFPsC3+2]zNU(T=0MVBVU}eSau_5I3#Ruc[CMr)Y9M5hC7XPJ%WL%n(Omg4Y9XO.)W;KbLPhafO;ii0y$c.$I@(RS:Ngq=+O6lfk3PZ/.Gnt^5BVExTS6+:]OX)YIN1fn/Y(kGf+$D/.Yh8*4go8J3a=Uh7Y50T_SP,$llPBV%[_MmS=N9,;hl/Fg_0SbcLm_gD}3Uff%S6K(CF9MyR8GOpi*2YDbDbb52fW@k1lUFen@2m4ny699zY0YeRKr?rTu][lx!nZ6IW8$SRD0@hrc!AY+{xC)5V;HR!qk-B,N:]NJ,(o{6tc@cQ%HFkvHvegO</frmExample>
  </Forms>
  <CheatEntries/>
  <UserdefinedSymbols/>
  <LuaScript>--setup the Cheats table
Cheats={}

Cheats[-1]={}
Cheats[-1].Desription='WTF?';
Cheats[-1].Function=function() showMessage('WTF?') end

--setup entry 1
Cheats[0]={}
Cheats[0].Description='Set speedhack speed to 2.0'
Cheats[0].Function=function() speedhack_setSpeed(2.00) end

--setup entry 2
Cheats[1]={}
Cheats[1].Description='Set speedhack speed to 5.0'
Cheats[1].Function=function() speedhack_setSpeed(5.00) end

function cbCheatSelectSelect(sender)
  --executed when thecombobox selection changes
  frmExample.lblDescription.Caption=Cheats[frmExample.cbCheatSelect.ItemIndex].Description
end

function btnApplyClick(sender)
  --executed when the button is clicked
  Cheats[frmExample.cbCheatSelect.ItemIndex].Function()
end

cbCheatSelectSelect(frmExample.cbCheatSelect) --initialize the first select
frmExample.show()
</LuaScript>
</CheatTable>
