<?xml version="1.0"?>
<CheatTable CheatEngineTableVersion="12">
  <Forms>
    <TRAINERFORM>6D91D14EC23014864BA76C6468F4CA78D74B2F2411BC47618C884121B8E8A5295BDD1ACABA7425C467F0317C111FC947B0DBCA06C8D5DA939DFFFB4ECF3704C09B0E6F4CCF71875C2C6D6FD61B3DBBB3E164F67434261FD2B8AAD51F080D2369FC02C3E3097C3C7EA3818C8CFB9AE9E044521ED7B7BB9A0EA32496658F5DDC373D272F115F8F620FA78B3E16A695CA1E5BE3CF14D8CAC013D8CFCA76756CE716F04E4BC0CBDC21D40E3FC09AC44E84E39098E75B4D45C99AF294668210581E9E4F4440849A575D1C778CE78459FAAB21830DE42C87BC1610D82EE72CFFB7A758A8A11CCEB8B00068A8C0FE4A4A1E3736071DE9EC781B5F4067BE9799CD0147295F1219D13834D5348CFA0BF3B4CCC9EF957EED80FE6DC13276F5A17E2358EDE95AC530D2EA6EADABD575032A91541284A0251704054462CAD2BD19FF513B07A9179A6A57D48EA6669B477E44B0C26515C45618A5BEA049C99711413E0FC81E1BFC01</TRAINERFORM>
  </Forms>
  <CheatEntries/>
  <UserdefinedSymbols/>
  <LuaScript>--The name of the trackbar is CETrackbar1 and the name of the form is TRAINERFORM
--To access it with lua use formname_controlname so: TRAINERFORM_CETrackbar1
--Please note that it is case sensitive

--TRAINERFORM_CETrackbar has an onChange event set

function CETrackBar1Change(sender)
  local value=trackbar_getPosition(TRAINERFORM_CETrackBar1)
  control_setCaption(TRAINERFORM_CELabel1,value)
end

function CEButton1Click(sender)
  showMessage('I could for example use writeInteger with the value '..trackbar_getPosition(TRAINERFORM_CETrackBar1))
  --or just use memoryrecord_setValue
end

form_show(TRAINERFORM)
</LuaScript>
</CheatTable>
