| View previous topic :: View next topic |
| Author |
Message |
Autem Expert Cheater
Reputation: 1
Joined: 30 Jan 2023 Posts: 156
|
Posted: Wed Feb 15, 2023 2:27 pm Post subject: Question about CE settings |
|
|
I have 2 versions of CE on my computer but they're both using the same settings even though I don't want them to. For example if I change some hotkey settings for the speedhack in 1, or change something in general settings, then the other CE also reflects those changes.
How do I stop this from happening so they each remember their own settings only?
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25807 Location: The netherlands
|
Posted: Wed Feb 15, 2023 2:54 pm Post subject: |
|
|
create 2 user accounts
run the first CE using user account 1 and the other CE using user account 2
https://www.makeuseof.com/windows-11-run-app-different-user/
_________________
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 |
|
 |
Autem Expert Cheater
Reputation: 1
Joined: 30 Jan 2023 Posts: 156
|
Posted: Wed Feb 15, 2023 3:10 pm Post subject: |
|
|
| Dark Byte wrote: | create 2 user accounts
run the first CE using user account 1 and the other CE using user account 2
|
Oh nice, ok thanks!
|
|
| Back to top |
|
 |
AylinCE Grandmaster Cheater Supreme
Reputation: 37
Joined: 16 Feb 2017 Posts: 1526
|
Posted: Wed Feb 15, 2023 3:36 pm Post subject: |
|
|
Another alternative is;
Reset the shortcut assignments and write it as a lua script and drop the CE version you want in the "autorun" folder and use it independently.
something like this;
| Code: | function checkKeys1()
if (isKeyPressed(VK_A)) then
speedhack_setSpeed(10)
elseif (isKeyPressed(VK_B)) then
speedhack_setSpeed(5)
elseif (isKeyPressed(VK_C)) then
speedhack_setSpeed(1)
end
collectgarbage("count")
end
tmrCheck = 1
function tmrStart1()
sleep(200)
if tmrCheck==1 then
keytim1=createTimer(getMainForm())
timer_setInterval(keytim1, 100)
timer_onTimer(keytim1, checkKeys1)
timer_setEnabled(keytim1, true)
tmrCheck=2
else
if keytim1 then keytim1.Destroy() keytim1=nil end
tmrCheck=1
end
end
if tmrStartKey1 then tmrStartKey1.Destroy() tmrStartKey1=nil end
tmrStartKey1 = createTimer(tmrStart1, VK_CONTROL,VK_F8) |
Or bind it to the TrackBar control, "Up", "Down" keys in a pop-up window.
_________________
|
|
| Back to top |
|
 |
|