Page 12 of 15

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Fri Sep 09, 2022 2:03 pm
by DieATribe
BlackXIII wrote:
Fri Sep 09, 2022 7:24 am
DieATribe wrote:
Thu Sep 08, 2022 11:35 am
rjjweak wrote:
Thu Sep 08, 2022 6:36 am
is there a tutorial video on how to use this?
the tutorial is simple, open game, start an adventure and then click the scripts you want...
Hello mate. First of all, thank you for the table. Skip to Zone 1800 option doesn't seems to work on steam. Is it possible to update?
its working for myself, it is somewhat buggy and may require a reboot or two, just make sure you are in an adventure when you enable it and dont disable it unless

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Sat Sep 10, 2022 6:15 pm
by ArSo
Is this ct still working?
I cant get it to work with steam version and CE 7.4
eg error when trying to activate clicklevel 9999 - error while scanning for AOB's Not all results found

autoattach X'es correctly
but mainscript shows, error while scanning for AOB's Not all results found

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Tue Sep 13, 2022 7:33 pm
by shapka85
is it possible to change the "skip to zone" to 1500?
since the core can only go to 1499

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Thu Sep 15, 2022 10:56 am
by DieATribe
if you use the core to keep skipping to 1499, you will get banned for atleast 24 hours

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Fri Sep 16, 2022 1:37 pm
by bpx
Any way to get pointers for seasonal quests? Milestone quests in particular. Checked for 4byte and Double but no chance

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Fri Sep 16, 2022 6:52 pm
by Onocom
bpx wrote:
Fri Sep 16, 2022 1:37 pm
Any way to get pointers for seasonal quests? Milestone quests in particular. Checked for 4byte and Double but no chance
quests/Challenges/rewards/currency/unlocks are all server stored. even if you change the counts and the client thinks you finished it, the server will reset it back.

so all you could get from a pointer (if you even manage to get one) is a display value, that would not change what you really have done for the server.

the game uses weird math calculations for some of their numbers, (8bit/Signed numbers) making it really hard/impossible to find them by just scanning for them.

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Mon Sep 19, 2022 5:17 am
by shapka85
Onocom wrote:
Sun Sep 18, 2022 4:28 pm

like I said I do not add overpowered stuff to the table, like the modron pieces.
And what about potions and blacksmithing scrolls?

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Tue Sep 20, 2022 1:38 pm
by Onocom
things that are saved/checked by the server:
  • Most items in your inventory: Scrolls Bounty/Blacksmith, Timegame Pieces, Gems, Chests, Scales, potions that affect a hero's gear.
  • Quests/Challenges, Timers until X (like Trials/Quest resets).
  • Unlocked Heros/Skins/Familiars
Some things can be changed temporarily but will reset when reloading the game.

you might be able to change the count on something, like a potion, but it will still use up the real amount you own.
you should also be careful with changing the Values of like a potion you have or a Bounty Contract. The server allows you to lower it and saves it, but increasing it will not be saved.

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Mon Oct 03, 2022 3:11 pm
by m1nxy1
Hi there.

Not sure if this is still updating or not but It doesnt seem to work for me.
Mainscript is untickable and becomes red?

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Wed Oct 12, 2022 12:38 am
by Frinkel
Still working for me. thanks for the upload <3

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Thu Oct 27, 2022 10:49 pm
by wawu
Freeze Briv Haste just stopped working today. It was working fine before and now I get <<The array of byte named brivskipendless could not be found>>

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Fri Oct 28, 2022 10:49 pm
by Frinkel
Yep. Briv Haste stopped working for me today too

EDIT: I think I fixed it.

Put this instead of the older briv haste code:

Code: Select all

USEMONO()
[ENABLE]

aobscan(brivhaste999999,F2 41 0F 11 87 98 00 00 00) // should be unique
aobscan(brivskipendless,F2 41 0F 11 87 98 00 00 00) // should be unique
alloc(newmem,$1000,brivhaste999999)
registersymbol(brivhaste999999)
registersymbol(brivskipendless)

label(code)
label(return)
label(briv999999)

brivskipendless:
db 90 90 90 90 90 90 90 90

newmem:

code:
movsd xmm0,[briv999999]
  movsd [r15+00000098],xmm0
  jmp return

briv999999:
dq (double)999

brivhaste999999:
  jmp newmem
  nop 4
return:

[DISABLE]

brivhaste999999:
  db F2 41 0F 11 87 98 00 00 00

brivskipendless:
  db F2 41 0F 11 87 98 00 00 00


unregistersymbol(brivskipendless)
unregistersymbol(brivhaste999999)
dealloc(newmem)

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Sat Oct 29, 2022 10:48 pm
by yayacj
Frinkel wrote:
Fri Oct 28, 2022 10:49 pm
Yep. Briv Haste stopped working for me today too

EDIT: I think I fixed it.

Put this instead of the older briv haste code:

Code: Select all

USEMONO()
[ENABLE]

aobscan(brivhaste999999,F2 41 0F 11 87 98 00 00 00) // should be unique
aobscan(brivskipendless,F2 41 0F 11 87 98 00 00 00) // should be unique
alloc(newmem,$1000,brivhaste999999)
registersymbol(brivhaste999999)
registersymbol(brivskipendless)

label(code)
label(return)
label(briv999999)

brivskipendless:
db 90 90 90 90 90 90 90 90

newmem:

code:
movsd xmm0,[briv999999]
  movsd [r15+00000098],xmm0
  jmp return

briv999999:
dq (double)999999

brivhaste999999:
  jmp newmem
  nop 4
return:

[DISABLE]

brivhaste999999:
  db F2 41 0F 11 87 98 00 00 00

brivskipendless:
  db F2 41 0F 11 87 98 00 00 00


unregistersymbol(brivskipendless)
unregistersymbol(brivhaste999999)
dealloc(newmem)
You're an angel. Thank you!

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Sun Oct 30, 2022 3:11 am
by Frinkel
Just a heads up... While this new code does work to get Briv instant stacks, it also seemed to put 999,999 Valentine stacks also, so it could potentially do insane Trials DPS that you may not want. It might also have other unintended effects that I am not aware of yet.

I'll post here if I fix it, but I don't think I know enough to be able to.

Re: Idle Champions of the Forgotten Realms [09.01.2020] Completed.

Posted: Wed Nov 16, 2022 7:39 pm
by Sevorast72
Frinkel wrote:
Fri Oct 28, 2022 10:49 pm
Yep. Briv Haste stopped working for me today too

EDIT: I think I fixed it.

Put this instead of the older briv haste code:

Code: Select all

USEMONO()
[ENABLE]

aobscan(brivhaste999999,F2 41 0F 11 87 98 00 00 00) // should be unique
aobscan(brivskipendless,F2 41 0F 11 87 98 00 00 00) // should be unique
alloc(newmem,$1000,brivhaste999999)
registersymbol(brivhaste999999)
registersymbol(brivskipendless)

label(code)
label(return)
label(briv999999)

brivskipendless:
db 90 90 90 90 90 90 90 90

newmem:

code:
movsd xmm0,[briv999999]
  movsd [r15+00000098],xmm0
  jmp return

briv999999:
dq (double)999999

brivhaste999999:
  jmp newmem
  nop 4
return:

[DISABLE]

brivhaste999999:
  db F2 41 0F 11 87 98 00 00 00

brivskipendless:
  db F2 41 0F 11 87 98 00 00 00


unregistersymbol(brivskipendless)
unregistersymbol(brivhaste999999)
dealloc(newmem)
This stopped working for me today.