Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Realm of the Mad God Hacks & Cheats › Realm of the Mad God Tutorials & Source Code › Realm Notifier

Realm Notifier

Posts 1–15 of 20 · Page 1 of 2
ML
MLX
Realm Notifier
Quick 'n' Dirty Realm Notifier that's powered by Realm Bay.

What you will need:
AutoIt
You'll need to create a text file named "EVENTS" and save it where the AU3 script is.

Code:

    $oldevent = ""
    While 1
    $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
    $oHTTP.Open("GET", "REALMBAY[dot]COM / data[dot]txt", False)
     
    $oHTTP.Send()
    $oReceived = $oHTTP.ResponseText
    $oStatusCode = $oHTTP.Status
     
    If $oStatusCode == 200 then
    $file = FileOpen("EVENTS.txt", 2)
    FileWrite($file, $oReceived)
    FileClose($file)
    $file2 = FileOpen("EVENTS.txt", 0)
    $TheFirstLine = FileReadLine ($file2, 1)
    $file3 = FileOpen("EVENTS.txt", 2)
    FileWrite($file3, $TheFirstLine)
    FileClose($file3)
    $checking = FileOpen("EVENTS.txt", 0)
    $TheLine = FileReadLine($checking, 1)
    if $TheLine = $oldevent Then
    sleep(50)
    Else
       $oldevent = $TheLine
       $crap = SplashTextOn("", $TheLine,       @desktopWidth, 50, 0, 0, 1, "", 5)
       WinSetTrans($crap, "", 170)
       FileClose($file2)
       EndIf
    EndIf
    sleep(100)
    WEnd
Posted the script on Pastebin because MPGH detects some functions of the script as links.
Feel free to edit the script.

EDIT : Just to be clear, this isn't one of those Event Notifiers that you turn on when you are in realms, this one is using information that is being updated each 10 seconds or so from RealmBay.
VuihBTx.png
#1 · edited 12y ago · 12y ago
PE
Pepsi Cola
Looks good, but I don't like the location of the dialog box. I would prefer it to be smaller and on the side somewhere. Also there should be a close option for the box, other than that, nice work
#2 · 12y ago
ML
MLX
Quote Originally Posted by Pepsi Cola View Post
Looks good, but I don't like the location of the dialog box. I would prefer it to be smaller and on the side somewhere. Also there should be a close option for the box, other than that, nice work
Thanks, but as I said, feel free to edit the code, AutoIt is a really easy and handy Programming Language, so yeah.
#3 · 12y ago
PE
Pepsi Cola
Quote Originally Posted by MLX View Post
Thanks, but as I said, feel free to edit the code, AutoIt is a really easy and handy Programming Language, so yeah.
Already have >.< and It's working well, again, GJ.
#4 · 12y ago
dg123
dg123
dont know anything about autoit but...i ran it and nothing has happened so far..
#5 · 12y ago
ML
MLX
Quote Originally Posted by dg123 View Post
dont know anything about autoit but...i ran it and nothing has happened so far..
Make sure that you have AutoIt installed, and you've changed this
Code:
"REALMBAY[dot]COM / data[dot]txt"
to the actual website.
#6 · edited 12y ago · 12y ago
dg123
dg123
Quote Originally Posted by MLX View Post
Make sure you have AutoIt downloaded, and you've changed this
Code:
"REALMBAY[dot]COM / data[dot]txt"
to the actual website.
i changed it to the actual site...but the icon switches between normal and an x. when clicked it says script paused...nothing else happened and EVENTS.txt is still empty
#7 · 12y ago
PE
Pepsi Cola
Quote Originally Posted by dg123 View Post


i changed it to the actual site...but the icon switches between normal and an x. when clicked it says script paused...nothing else happened and EVENTS.txt is still empty
No need to do anything really.
Just make sure they are both in the same folder and run the .au3 afer changing it to the actual site. nothing else.
#8 · 12y ago
dg123
dg123
Quote Originally Posted by Pepsi Cola View Post


No need to do anything really.
Just make sure they are both in the same folder and run the .au3 afer changing it to the actual site. nothing else.
did that...can you show me what its supposed to look like?
#9 · 12y ago
HU
Hurcan
yep i got the same thing, nothing happens when i open the au3 file
#10 · 12y ago
DA
DArgo2006
Actualy he is wrong, you DO have to do something to make it work as the script is slightly wrong and I had to make some changes for it to work.

Here's how I set mine up
Code:
    $oldevent = ""
    While 1
    $oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
    $oHTTP.Open("GET", "http://realmbay.com/data.php", False)

    $oHTTP.Send()
    $oReceived = $oHTTP.ResponseText
    $oStatusCode = $oHTTP.Status

    If $oStatusCode == 200 then
    $file = FileOpen("EVENTS.txt", 2)
    FileWrite($file, $oReceived)
    FileClose($file)
    $file2 = FileOpen("EVENTS.txt", 0)
    $TheFirstLine = FileReadLine ($file2, 17)
    $file3 = FileOpen("EVENTS.txt", 2)
    FileWrite($file3, $TheFirstLine)
    FileClose($file3)
    $checking = FileOpen("EVENTS.txt", 0)
    $TheLine = FileReadLine($checking, 1)
    if $TheLine = $oldevent Then
    sleep(300)
    Else
       $oldevent = $TheLine
       $crap = SplashTextOn("", $TheLine, 500, 100, 200, 50, 17, "" )
       WinSetTrans($crap, "", 170)
       FileClose($file2)
       EndIf
    EndIf
    sleep(100)
    WEnd
#11 · 12y ago
PE
Pepsi Cola
Quote Originally Posted by dg123 View Post


did that...can you show me what its supposed to look like?
Code:
$oldevent = ""
While 1
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("GET", "http://realmbay.com/data.txt", False)

$oHTTP.Send()
$oReceived = $oHTTP.ResponseText
$oStatusCode = $oHTTP.Status

If $oStatusCode == 200 then
$file = FileOpen("EVENTS.txt", 2)
FileWrite($file, $oReceived)
FileClose($file)
$file2 = FileOpen("EVENTS.txt", 0)
$TheFirstLine = FileReadLine ($file2, 1)
$file3 = FileOpen("EVENTS.txt", 2)
FileWrite($file3, $TheFirstLine)
FileClose($file3)
$checking = FileOpen("EVENTS.txt", 0)
$TheLine = FileReadLine($checking, 1) 
$DLG_NOTITLE = 1
$DLG_NOTONTOP = 2
$DLG_TEXTLEFT = 4
$DLG_TEXTRIGHT = 8
$DLG_MOVEABLE = 16
$DLG_TEXTVCENTER = 32
if $TheLine = $oldevent Then
sleep(50)
Else
   $oldevent = $TheLine
   $crap = SplashTextOn("Realm Notifier [Powered By RealmBay]",$TheLine,  @desktopwidth, 50, 0, 0, 16, 1,"", 10)
   WinSetTrans($crap, "", 175)
   FileClose($file2)
   EndIf
EndIf
sleep(100)
WEnd
I edited mine a little bit. It is supposed to look like this:
#12 · edited 12y ago · 12y ago
dg123
dg123
Quote Originally Posted by Pepsi Cola View Post


Code:
$oldevent = ""
While 1
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("GET", "http://realmbay.com/data.txt", False)

$oHTTP.Send()
$oReceived = $oHTTP.ResponseText
$oStatusCode = $oHTTP.Status

If $oStatusCode == 200 then
$file = FileOpen("EVENTS.txt", 2)
FileWrite($file, $oReceived)
FileClose($file)
$file2 = FileOpen("EVENTS.txt", 0)
$TheFirstLine = FileReadLine ($file2, 1)
$file3 = FileOpen("EVENTS.txt", 2)
FileWrite($file3, $TheFirstLine)
FileClose($file3)
$checking = FileOpen("EVENTS.txt", 0)
$TheLine = FileReadLine($checking, 1) 
$DLG_NOTITLE = 1
$DLG_NOTONTOP = 2
$DLG_TEXTLEFT = 4
$DLG_TEXTRIGHT = 8
$DLG_MOVEABLE = 16
$DLG_TEXTVCENTER = 32
if $TheLine = $oldevent Then
sleep(50)
Else
   $oldevent = $TheLine
   $crap = SplashTextOn("Realm Notifier [Powered By RealmBay]",$TheLine,  @desktopwidth, 50, 0, 0, 16, 1,"", 10)
   WinSetTrans($crap, "", 175)
   FileClose($file2)
   EndIf
EndIf
sleep(100)
WEnd
I edited mine a little bit. It is supposed to look like this:
yours gives me errors
#13 · 12y ago
PE
Pepsi Cola
Quote Originally Posted by dg123 View Post

yours gives me errors
Code:
$oldevent = ""
While 1
$oHTTP = ObjCreate("winhttp.winhttprequest.5.1")
$oHTTP.Open("GET", "http://realmbay.com/data.txt", False)

$oHTTP.Send()
$oReceived = $oHTTP.ResponseText
$oStatusCode = $oHTTP.Status

If $oStatusCode == 200 then
$file = FileOpen("EVENTS.txt", 2)
FileWrite($file, $oReceived)
FileClose($file)
$file2 = FileOpen("EVENTS.txt", 0)
$TheFirstLine = FileReadLine ($file2, 1)
$file3 = FileOpen("EVENTS.txt", 2)
FileWrite($file3, $TheFirstLine)
FileClose($file3)
$checking = FileOpen("EVENTS.txt", 0)
$TheLine = FileReadLine($checking, 1)
$DLG_MOVEABLE = 16
$DLG_NOTITLE = 1
$DLG_NOTONTOP = 2
$DLG_TEXTLEFT = 4
$DLG_TEXTRIGHT = 8
$DLG_MOVEABLE = 16
$DLG_TEXTVCENTER = 32
if $TheLine = $oldevent Then
sleep(50)
Else
   $oldevent = $TheLine
   $crap = SplashTextOn("Realm Notifier [Powered By RealmBay]",$TheLine, @desktopwidth, 50, 0, 0, 16, 1,"", 10)
   WinSetTrans($crap, "", 175)
   FileClose($file2)
   EndIf
EndIf
sleep(100)
WEnd
Try this. Working fine for me.
#14 · 12y ago
IN
infern000
guys, does nobody notice that the forum fukks up the code? repair the (at)DesktopWidth into one line. then it works fine
#15 · 12y ago
Posts 1–15 of 20 · Page 1 of 2

Post a Reply

Similar Threads

  • OUTDATED - [Realm Relay] Event Notifier scriptBy IziLife in Realm of the Mad God Tutorials & Source Code
    20Last post 12y ago
  • [Realm Relay] Quest Loot Bag NotifierBy Alde. in Realm of the Mad God Tutorials & Source Code
    28Last post 12y ago
  • Free realms game cards for saleBy Versa in Trade Accounts/Keys/Items
    4Last post 16y ago
  • Unforgotten Realms.By daowner2 in General
    2Last post 18y ago
  • GM Notify Alert Progam - GenXBy GenX in WarRock - International Hacks
    18Last post 18y ago

Tags for this Thread

#autoit#notifier#realmofthemadgod#script