<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="17">
  <Forms>
    <UDF1 Class="TCEForm" Encoding="Ascii85">U5]yp!!Q)t^ZncuMeJCVO8]rD)2$5lQ7cH5wSx[?/oZP}=t)pM-}!x:Q+Z;+I25U=)UWGrnWrcr/,]^MWtJC!,sWp;xSlM^Yv5mW]e5u@6Zj9_CA9pToK#kahTl=:sWw;f*4[k5Ict14xM%VHGZWdvm#Q^Sjv5/SIu?_AJ*b2J(n@%2WYZb6zTJh^T49gOzyV4@[H%P;gNSm;J0E!SaqdSyK-DYM1^sOjN3#VH/tWQPhiBQ%7]}t*[o^YAOZjA!UU}PPq_Yx1(Mg#nBJH{nU4R9I:D(u?3Q$,5,I{qg1p</UDF1>
  </Forms>
  <CheatEntries/>
  <UserdefinedSymbols/>
  <LuaScript>function passwordeditkeypress(sender, key)
  if key ~= '\r' then return key end

  local input=UDF1.CEEdit1.Caption
  UDF1.CEEdit1.Caption=''

  if input=='' then return end

  if tonumber(input) then
    A = input+0 -- cast to number
    UDF1.CEMemo1.append('assigned value '..input..' to variable A')
  else
    A = nil
    UDF1.CEMemo1.append('user input: '..input..'. Variable A NIL\'ed')
  end

end

UDF1.CEEdit1.OnKeyPress = passwordeditkeypress

UDF1.show()
</LuaScript>
</CheatTable>
