Welcome to the UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats.
You have to register before you can post and see and access any of the advanced forum features, please click the register link to proceed to the registration form. To start viewing threads or posts, select a forum that you want to visit from the selection below.
Battlefield 2 hacks cheats tutorials source code
You are Unregistered, please register to gain Full access.
Nothing Special.
Works with Battlefield 1.5 100% Punkbuster Undetected.
PHP Code:
Public Function SetTeam(ByVal iTeam As Integer) Dim HANDLE() As Process = Process.GetProcessesByName("bf2") Dim CPlayerManager As Integer = 0 Dim LocalPlayer As Integer = 0 If HANDLE.Length = 0 Then Return 0 ReadProcessMemory(HANDLE(0).Handle, &HA08F60, CPlayerManager, 4, 0) ReadProcessMemory(HANDLE(0).Handle, CPlayerManager + &H60, LocalPlayer, 4, 0) WriteProcessMemory(HANDLE(0).Handle, LocalPlayer + &HD8, BitConverter.GetBytes(iTeam), 4, 0) Return 1 End Function
Public Function GetTeam() Dim HANDLE() As Process = Process.GetProcessesByName("bf2") Dim CPlayerManager As Integer = 0 Dim LocalPlayer As Integer = 0 Dim iTeam As Integer = 0 If HANDLE.Length = 0 Then Return 0 ReadProcessMemory(HANDLE(0).Handle, &HA08F60, CPlayerManager, 4, 0) ReadProcessMemory(HANDLE(0).Handle, CPlayerManager + &H60, LocalPlayer, 4, 0) ReadProcessMemory(HANDLE(0).Handle, LocalPlayer + &HD8, iTeam, 4, 0) Return iTeam End Function
__________________
- "Sir, we are surrounded!"
- "Excellent, now we can attack in any direction"
So this just makes you switch teams every %x amount of seconds?
__________________
"Love for All and Sharing is the first step to solving all the problems of humanity. "
''The art of Wuju lives on in Master Yi, and is plunged through the hearts of his foes.'' -- Soraka, the Starchild
---------------------------------------------------------------------------- Anti-Cheat Software & Programming - Other FPS Games ----------------------------------------------------------------------------
Ah, ok Thanks I figured it did something like that
__________________
"Love for All and Sharing is the first step to solving all the problems of humanity. "
''The art of Wuju lives on in Master Yi, and is plunged through the hearts of his foes.'' -- Soraka, the Starchild
---------------------------------------------------------------------------- Anti-Cheat Software & Programming - Other FPS Games ----------------------------------------------------------------------------