Forums WoW Modding Resources Tools [Archive] WoW 1.12.1 Fishing Bot

[Archive] WoW 1.12.1 Fishing Bot

[Archive] WoW 1.12.1 Fishing Bot

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#1
Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: World of Warcraft 1.12.1 Fishing Bot (here)

Developed for educational purposes. (C#, Memory Editing)

Note:
  • 100% safe on private servers
  • Do not use on live servers - you have a high chance of a ban.
  • Use at your own risk.
  • Windows 8+ users may experience WoW crashes when the bot is closed.
[Image: tDR66AP.png]

[url=https://github.com/winifix/Fishbot-1.12.1][/url]
rektbyfaith
11-04-2025, 12:45 PM #1

Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: World of Warcraft 1.12.1 Fishing Bot (here)

Developed for educational purposes. (C#, Memory Editing)

Note:
  • 100% safe on private servers
  • Do not use on live servers - you have a high chance of a ban.
  • Use at your own risk.
  • Windows 8+ users may experience WoW crashes when the bot is closed.
[Image: tDR66AP.png]

[url=https://github.com/winifix/Fishbot-1.12.1][/url]

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#2
Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

rektbyfaith
11-04-2025, 12:45 PM #2

Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#3
Archived author: slook • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: can u make it work on 2.4.3?
rektbyfaith
11-04-2025, 12:45 PM #3

Archived author: slook • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: can u make it work on 2.4.3?

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#4
Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Deleted - No longer valid
rektbyfaith
11-04-2025, 12:45 PM #4

Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Deleted - No longer valid

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#5
Archived author: suoandong • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Thank you for your code. When I click start fishing, what should I do with this?

1.jpg

[Image: 34879d1470644887-wow-1-12-1-fishing-bot-1.jpg]
rektbyfaith
11-04-2025, 12:45 PM #5

Archived author: suoandong • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Thank you for your code. When I click start fishing, what should I do with this?

1.jpg

[Image: 34879d1470644887-wow-1-12-1-fishing-bot-1.jpg]

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#6
Archived author: Krack3n • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: By the screenshot I would imagine your using Client 1.12.3. Correct?
rektbyfaith
11-04-2025, 12:45 PM #6

Archived author: Krack3n • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: By the screenshot I would imagine your using Client 1.12.3. Correct?

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#7
Archived author: suoandong • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: 1.12.1 help help~~
rektbyfaith
11-04-2025, 12:45 PM #7

Archived author: suoandong • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: 1.12.1 help help~~

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#8
Archived author: squiggy • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Originally Posted by WiNiFiX
[Image: lastpost-right.svg]

Sure give me the 2.4.3 offsets for the below (sorry I don't have time to look for them at present)

PHP Code:

public static IntPtr g_clientConnection = new IntPtr(0xC79CE0);                 // 3.3.5a
public static IntPtr s_curMgrOffset = new IntPtr(0x2ED0);                       // 3.3.5a
public static IntPtr FirstObjectOffset = new IntPtr(0xAC);                      // 3.3.5a
public static IntPtr NextObjectOffset = new IntPtr(0x3C);                       // 3.3.5a
public static IntPtr PlayerName = new IntPtr(0xC79D18);                         // 3.3.5a
public static IntPtr TargetGUID = new IntPtr(0xBD07B0);
public static IntPtr ClntObjMgrGetActivePlayerObj = new IntPtr(0x004038F0);     // 3.3.5a
public static IntPtr FrameScript__Execute = new IntPtr(0x819210);               // 3.3.5a
public static IntPtr FrameScript__GetLocalizedText = new IntPtr(0x007225E0);    // 3.3.5a

been working on a tbc bot over the summer, got most of those offsets:

(edit, i was using Shynds code to find the objMgr automatically but got curious about this approach and went hunting. i think these should be the correct offsets)

g_clientConnection = 0xD43318

s_curMgrOffset = 0x2218

FirstObjectOffset = 0xAC

NextObjectOffset = 0x3C

PlayerName = wow.exe + 0x943348

TargetGUID = wow.exe +0x86E960

ClntObjMgrGetActivePlayerObj = 0x00402f40

FrameScript__Execute = 0x706C80

FrameScript__GetLocalizedText :

FrameScript__GetText = 0x00707200
rektbyfaith
11-04-2025, 12:45 PM #8

Archived author: squiggy • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: Originally Posted by WiNiFiX
[Image: lastpost-right.svg]

Sure give me the 2.4.3 offsets for the below (sorry I don't have time to look for them at present)

PHP Code:

public static IntPtr g_clientConnection = new IntPtr(0xC79CE0);                 // 3.3.5a
public static IntPtr s_curMgrOffset = new IntPtr(0x2ED0);                       // 3.3.5a
public static IntPtr FirstObjectOffset = new IntPtr(0xAC);                      // 3.3.5a
public static IntPtr NextObjectOffset = new IntPtr(0x3C);                       // 3.3.5a
public static IntPtr PlayerName = new IntPtr(0xC79D18);                         // 3.3.5a
public static IntPtr TargetGUID = new IntPtr(0xBD07B0);
public static IntPtr ClntObjMgrGetActivePlayerObj = new IntPtr(0x004038F0);     // 3.3.5a
public static IntPtr FrameScript__Execute = new IntPtr(0x819210);               // 3.3.5a
public static IntPtr FrameScript__GetLocalizedText = new IntPtr(0x007225E0);    // 3.3.5a

been working on a tbc bot over the summer, got most of those offsets:

(edit, i was using Shynds code to find the objMgr automatically but got curious about this approach and went hunting. i think these should be the correct offsets)

g_clientConnection = 0xD43318

s_curMgrOffset = 0x2218

FirstObjectOffset = 0xAC

NextObjectOffset = 0x3C

PlayerName = wow.exe + 0x943348

TargetGUID = wow.exe +0x86E960

ClntObjMgrGetActivePlayerObj = 0x00402f40

FrameScript__Execute = 0x706C80

FrameScript__GetLocalizedText :

FrameScript__GetText = 0x00707200

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#9
Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

rektbyfaith
11-04-2025, 12:45 PM #9

Archived author: WiNiFiX • Posted: 2025-11-04T13:45:01.012863
Original source

rektbyfaith
Administrator
0
11-04-2025, 12:45 PM
#10
Archived author: slook • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: sry, didnt read your post. now iam back to 1.12.1 anyway.

quick question ... how do i even start the bot?
rektbyfaith
11-04-2025, 12:45 PM #10

Archived author: slook • Posted: 2025-11-04T13:45:01.012863
Original source

Quote: sry, didnt read your post. now iam back to 1.12.1 anyway.

quick question ... how do i even start the bot?

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)