| View previous topic :: View next topic |
| Author |
Message |
FUNNYPOGS How do I cheat?
Reputation: 0
Joined: 13 Jun 2024 Posts: 4
|
Posted: Thu Jun 13, 2024 2:19 am Post subject: CE EDIT BOX To Change String Value |
|
|
How to make a CEEDIT BOX change unicode String (WORDS) Ofc.
To change in real time as you edit the textbox.
Trying to make a In game service Tag Changer.
Where it says ASDF as my service tag.
I wanna change that with the CEEDIT box in real time.
But yeah I'm a little lost
Being trying to figure it out for a few hours Very Happy
Using this, but yeah.
Doesn't seem to work soo
local baseAddress = getAddress("haloreach.dll+2A03D84")<---- memory address of the Service Tag
function setServiceTag(newTag)
writeString(serviceTagAddress, newTag)
end
This is just to mess around with some mates soo
Some Help would be nice _________________
VK |
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25818 Location: The netherlands
|
Posted: Thu Jun 13, 2024 2:23 am Post subject: |
|
|
try writeString(serviceTagAddress, newTag, true) _________________
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 |
|
 |
FUNNYPOGS How do I cheat?
Reputation: 0
Joined: 13 Jun 2024 Posts: 4
|
|
| Back to top |
|
 |
AylinCE Grandmaster Cheater Supreme
Reputation: 37
Joined: 16 Feb 2017 Posts: 1532
|
Posted: Thu Jun 13, 2024 3:07 am Post subject: |
|
|
| Code: | local baseAddress = getAddress("haloreach.dll+2A03D84") --THE SERVICE TAG ADDRESS.
local offset = 0 -- Add offset if needed
local serviceTagAddress = baseAddress.."+"..offset
function setServiceTag(newTag)
writeString(serviceTagAddress, newTag, true)
end
local form = createForm(true)
local CEEdit1 = createEdit(form)
CEEdit1.Top = 10
CEEdit1.Left = 10
CEEdit1.Width = 150
local CEButton1 = createButton(form)
CEButton1.Top = 9
CEButton1.Left = 170
CEButton1.Caption="Enable"
CEButton1.OnClick = function()
if CEEdit1.Text~="" then
setServiceTag(CEEdit1.Text)
end
end |
_________________
|
|
| Back to top |
|
 |
FUNNYPOGS How do I cheat?
Reputation: 0
Joined: 13 Jun 2024 Posts: 4
|
Posted: Thu Jun 13, 2024 3:23 am Post subject: |
|
|
| AylinCE wrote: | | Code: | local baseAddress = getAddress("haloreach.dll+2A03D84") --THE SERVICE TAG ADDRESS.
local offset = 0 -- Add offset if needed
local serviceTagAddress = baseAddress.."+"..offset
function setServiceTag(newTag)
writeString(serviceTagAddress, newTag, true)
end
local form = createForm(true)
local CEEdit1 = createEdit(form)
CEEdit1.Top = 10
CEEdit1.Left = 10
CEEdit1.Width = 150
local CEButton1 = createButton(form)
CEButton1.Top = 9
CEButton1.Left = 170
CEButton1.Caption="Enable"
CEButton1.OnClick = function()
if CEEdit1.Text~="" then
setServiceTag(CEEdit1.Text)
end
end |
|
tried this, seems like nothing is happening at all. _________________
VK |
|
| Back to top |
|
 |
AylinCE Grandmaster Cheater Supreme
Reputation: 37
Joined: 16 Feb 2017 Posts: 1532
|
Posted: Thu Jun 13, 2024 4:16 am Post subject: |
|
|
This works in my case!
Make sure you have the final address correct.
And try the code again.
| Code: | function setServiceTag(newTag)
local baseAddress = getAddress("haloreach.dll+2A03D84") --THE SERVICE TAG ADDRESS.
local offset = "0" -- Add offset if needed --> string
local serviceTagAddress = baseAddress.."+"..offset
writeString(serviceTagAddress, newTag)
end
local form = createForm(true)
local CEEdit1 = createEdit(form)
CEEdit1.Top = 10
CEEdit1.Left = 10
CEEdit1.Width = 150
local CEButton1 = createButton(form)
CEButton1.Top = 9
CEButton1.Left = 170
CEButton1.Caption="Enable"
CEButton1.OnClick = function()
if CEEdit1.Text~="" then
setServiceTag(CEEdit1.Text)
end
end |
_________________
|
|
| Back to top |
|
 |
FUNNYPOGS How do I cheat?
Reputation: 0
Joined: 13 Jun 2024 Posts: 4
|
Posted: Fri Jun 14, 2024 6:08 am Post subject: |
|
|
| AylinCE wrote: | This works in my case!
Make sure you have the final address correct.
And try the code again.
| Code: | function setServiceTag(newTag)
local baseAddress = getAddress("haloreach.dll+2A03D84") --THE SERVICE TAG ADDRESS.
local offset = "0" -- Add offset if needed --> string
local serviceTagAddress = baseAddress.."+"..offset
writeString(serviceTagAddress, newTag)
end
local form = createForm(true)
local CEEdit1 = createEdit(form)
CEEdit1.Top = 10
CEEdit1.Left = 10
CEEdit1.Width = 150
local CEButton1 = createButton(form)
CEButton1.Top = 9
CEButton1.Left = 170
CEButton1.Caption="Enable"
CEButton1.OnClick = function()
if CEEdit1.Text~="" then
setServiceTag(CEEdit1.Text)
end
end |
|
I'll give this a try again. _________________
VK |
|
| Back to top |
|
 |
|