Page 1 of 1

[Request] Bulletstorm Fullclip Edition(steam latest)

Posted: Sat Feb 17, 2018 11:20 am
by Hitomi
Option Requested: God mode/inf hp for player,ally &vehicle (SP),inf ammo&special ammo, accuracy & recoil, add point,1 hit.

Re: [Request] Bulletstorm Fullclip Edition(steam latest)

Posted: Mon Sep 09, 2019 6:06 pm
by relentlesstech
Infinite Ammo / No Reload AoB Script

Code: Select all

[ENABLE]

aobscanmodule(_ammo,StormGame-Win64-Shipping.exe,29 84 8B AC 17 00 00) // Current Ammo Routine
alloc(newmem,$1000,"StormGame-Win64-Shipping.exe"+E9F06F)

label(code)
label(return)

aobscanmodule(_ammo2,StormGame-Win64-Shipping.exe,29 84 8B A4 17 00 00) // Clip Routine (Linked to CurrentAmmo)
alloc(newmem2,$1000,"StormGame-Win64-Shipping.exe"+E9F076)

label(code2)
label(return2)

newmem:

code:
  mov eax,[rbx+rcx*4+000017B4]  //Move max ammo count into eax
  mov [rbx+rcx*4+000017AC],eax  
  jmp return

_ammo:
  jmp newmem
  nop
  nop
return:
registersymbol(_ammo)

newmem2:

code2:
  mov eax,[rbx+rcx*4+000017BC]  //Move max clip amount into eax
  mov [rbx+rcx*4+000017A4],eax
  jmp return2

_ammo2:
  jmp newmem2
  nop
  nop
return2:
registersymbol(_ammo2)

[DISABLE]

_ammo:
  db 29 84 8B AC 17 00 00

unregistersymbol(_ammo)
dealloc(newmem)

_ammo2:
  db 29 84 8B A4 17 00 00

unregistersymbol(_ammo2)
dealloc(newmem2)