Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Easier way to setup checkboxes?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
0Bx
How do I cheat?
Reputation: 0

Joined: 01 Jun 2021
Posts: 5

PostPosted: Tue Jun 01, 2021 9:16 am    Post subject: Easier way to setup checkboxes? Reply with quote

So I have a trainer with a lot of checkboxes, and I have to do each one like:

Code:

function * (sender)
if form.Checkbox.State == cbCheked then
autoAssemble ([[
-- bytes (enable)
]])
else
autoAssemble ([[
-- bytes (disable)
]])
end
end


Is there a easier way to do this like with variables?
Back to top
View user's profile Send private message
Dark Byte
Site Admin
Reputation: 458

Joined: 09 May 2003
Posts: 25284
Location: The netherlands

PostPosted: Tue Jun 01, 2021 9:51 am    Post subject: Reply with quote

you can give all the checkboxes the same function and give each checkbox a unique Tag property

then have a luatable containing all the scripts, or even just the bytes and build the scripts from that

e.g
Code:

scripts={}

scripts[1]={}
scripts[1].enable=[[script enable 1]]
scripts[1].disable=[[script disable 1]]
...
...
...

function cbchange(sender)
  local script
  if sender.Checked then
     script=scripts[sender.Tag].enable
  else
     script=scripts[sender.Tag].disable
  end

  autoAssemble(script)
end

_________________
Do not ask me about online cheats. I don't know any and wont help finding them.

Like my help? Join me on Patreon so i can keep helping
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites