Page 1 of 4 123 ... LastLast
Results 1 to 15 of 53
  1. #1
    JustAnoobROTMG's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,916
    Reputation
    185
    Thanks
    18,230

    Add "Realm-Eye Me!" menu item

    This menu item allow you to open a browser window showing the RealmEye page of the player you clicked.




    1) You must locate the class where the menu is drawn. Easy => look for "Unlock" in files..
    You will be in a method dealing with "Unlock", "Lock", "Trade" items..

    For me its in _-aa\_-0BN.asasm

    2) Add this just before the returnvoid


    Code:
    ;-----------------------------------------------------------------------------
    ; ADD RealmEye Shortcut
    ;-----------------------------------------------------------------------------
    
         findpropstrict      QName(PackageNamespace("_-aa"), "_-T6")
         getlex                QName(PackageNamespace("com.company.util"), "AssetLibrary")
         pushstring          "lofiInterface2"
         pushbyte            3
         callproperty        QName(PackageNamespace("", "#0"), "_-0U6"), 2
         pushint             16777215
         pushstring          "RealmEye-Me !"
         constructprop     QName(PackageNamespace("_-aa"), "_-T6"), 3
         coerce              QName(PackageNamespace("_-aa"), "_-T6")
         setlocal3
    
         getlocal3
         getlex              QName(PackageNamespace("flash.events"), "MouseEvent")
         getproperty         QName(PackageNamespace("", "#0"), "CLICK")
         getlocal0
         getproperty         QName(PrivateNamespace("*", "_-aa:_-0BN"), "_realmeye")
         callpropvoid        QName(PackageNamespace("", "#0"), "addEventListener"), 2
    
         findpropstrict      QName(ProtectedNamespace("_-81"), "_-0Fn")
         getlocal3
         callpropvoid        QName(ProtectedNamespace("_-81"), "_-0Fn"), 1
     ;-------------------------------------------------------------------------------------
    So if we click on the button, the method "_realmeye" will be called

    Lets add it !


    3) We have just edited a method.
    Copy this code UNDER THE METHOD WE'VE JUST MODIFIED !
    (under the end; method)

    Code:
      
     ;--------------------------------------------------------------------------------- 
      trait method QName(PrivateNamespace("*", "_-aa:_-0BN"), "_realmeye")
       method
        refid "_-aa:_-0BN/_realmeye"
        param QName(PackageNamespace("flash.events"), "Event")
        returns QName(PackageNamespace("", "#0"), "void")
        body
         maxstack 4
         localcount 4
         initscopedepth 10
         maxscopedepth 11
         code
         
          ; Initialize URLRequest
          findpropstrict      QName(PackageNamespace("flash.net"), "URLRequest")
          constructprop       QName(PackageNamespace("flash.net"), "URLRequest"), 0
          coerce              QName(PackageNamespace("flash.net"), "URLRequest")
          setlocal1 
              
          ;Set URL base
          pushstring          "https://www.realmeye.com/player/"
          setlocal2
          
          ;Get clicked player name
          getlocal0
          getproperty         QName(PackageNamespace("", "#0"), "player_")      
          getproperty         QName(PackageNamespace("", "#0"), "name_")    
          setlocal3     
          
          ;Add playername to URL
          getlocal2
          getlocal3
          add 
          setlocal3
          
          ;set the URLRequest Url to our url
          getlocal1
          getlocal3                                      
          setproperty         QName(PackageNamespace("", "#0"), "url")     
          
          ; Open Browser Window
          findpropstrict      QName(PackageNamespace("flash.net"), "navigateToURL")
          getlocal1
          pushstring          "_blank"
          callpropvoid        QName(PackageNamespace("flash.net"), "navigateToURL"), 2      
         
           ; to be like other menu items we call remove
           findpropstrict      QName(ProtectedNamespace("_-81"), "remove")
           callpropvoid        QName(ProtectedNamespace("_-81"), "remove"), 0
           
           returnvoid
         end ; code
        end ; body
       end ; method
      end ; trait 
     ;-------------------------------------------------------------------------------

    If you plan to update this code, remember that you need to update
    * _-aa with the folder where your file is
    * _-0BN with the file name we are currently editing
    * _-T6, _-81", and "_-0Fn" with the good names . See how the other menu items are build to find new names.
    Due to a recent DMCA takedown attempt we had to remove Faintmako brain. Please do not paid attention to what he say or do.


  2. The Following 11 Users Say Thank You to JustAnoobROTMG For This Useful Post:

    Cyeclops (02-20-2013),dg123 (06-16-2013),gioseba (02-20-2013),Hyzek (02-20-2013),maat7043 (02-21-2013),Ninjin (03-02-2013),ossimc82 (02-20-2013),runekri3 (02-20-2013),UGCfour (03-13-2013),UltraN00b (02-20-2013),ZkT (02-20-2013)

  3. #2
    UltraN00b's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Protected v0id
    Posts
    514
    Reputation
    68
    Thanks
    401
    My Mood
    Amazed
    Good Add-On! I'm adding this to my client!
    Liked my Post? Say Thanks!
    Before saying that a developer is wrong, think harder. Maybe, YOU are wrong since the dev knows more about his own programs than you do and has more knowledge about what he is doing.
    -- Direct Quote from the XDA-Developers Forums.

  4. #3
    nilly's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2,652
    Reputation
    155
    Thanks
    13,983
    My Mood
    Angelic
    Nice one jNoob.
    Be careful, stray too far from the pack and you'll get lost.

  5. #4
    Mitcheel's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Rotterdam
    Posts
    338
    Reputation
    10
    Thanks
    139
    My Mood
    Goofy
    This is perfect, Adding it when im home!
    Thanx jNooooob

  6. #5
    Cyeclops's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Australia
    Posts
    595
    Reputation
    49
    Thanks
    440
    My Mood
    Devilish
    That is cool

    I have managed to get everything apart from aimbot to work, not that I use aimbot, but still, would like to get it to work lol )

  7. #6
    runekri3's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    792
    Reputation
    9
    Thanks
    240
    My Mood
    Cheerful
    Finally an original idea by someone.
    Good job

    Quote Originally Posted by nilly View Post
    Nice one jNoob.
    And I was typing justanoob the whole time... Thanks to you aswell (I have an addiction of ... )
    Reputation-
    Vouches
    Respect-
    Nilly, Ultran00b, JustAnoobROTMG, Nano, karolelis9, fallenhacks(cake), jaythedev
    DisRespect-
    mandela96, spaghetti master, floxxe, drillick, brendoo

  8. #7
    JustAnoobROTMG's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,916
    Reputation
    185
    Thanks
    18,230
    Quote Originally Posted by runekri3 View Post
    Finally an original idea by someone.
    Good job
    Yeah, thanks. I was wondering what new hack can be done and i thought about this one.I have another idea like this (maybe a shortcut to /tell <playername>)
    Due to a recent DMCA takedown attempt we had to remove Faintmako brain. Please do not paid attention to what he say or do.


  9. The Following 2 Users Say Thank You to JustAnoobROTMG For This Useful Post:

    Jlippelman (02-22-2013),Jnsk (02-20-2013)

  10. #8
    gainb's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    202
    Reputation
    10
    Thanks
    519
    New to editing swfs and, what if mines isn't in the _-aa file, where do I look then?

  11. #9
    DatCoder's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    265
    Reputation
    10
    Thanks
    178
    My Mood
    Inspired
    Quote Originally Posted by gainb View Post
    New to editing swfs and, what if mines isn't in the _-aa file, where do I look then?
    Quote Originally Posted by JustAnoobROTMG
    Easy => look for "Unlock" in files..
    And it's more like _-aa folder.

  12. #10
    redex's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    United States
    Posts
    37
    Reputation
    10
    Thanks
    8
    My Mood
    Mellow
    Quote Originally Posted by JustAnoobROTMG View Post
    Yeah, thanks. I was wondering what new hack can be done and i thought about this one.I have another idea like this (maybe a shortcut to /tell <playername>)
    I like that idea. One idea I've been working on for weeks and not getting anywhere: Turning player names in the chatlog into teleport buttons. Imagine: the next time someone says "TP FOR CRYSTAL." you can just click their name and tp to them!

  13. The Following 2 Users Say Thank You to redex For This Useful Post:

    Jnsk (02-20-2013),sixmofia (11-06-2013)

  14. #11
    Jnsk's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Posts
    20
    Reputation
    10
    Thanks
    1
    My Mood
    Psychedelic
    Quote Originally Posted by redex View Post
    I like that idea. One idea I've been working on for weeks and not getting anywhere: Turning player names in the chatlog into teleport buttons. Imagine: the next time someone says "TP FOR CRYSTAL." you can just click their name and tp to them!
    Both of those are such good ideas! +1

  15. #12
    runekri3's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    792
    Reputation
    9
    Thanks
    240
    My Mood
    Cheerful
    Since the topic is going to new ideas and stuff people are making.
    Im going to make a program to add new entries and edit existing ones, first for items.xml, later maybe monsters and more.
    Gonna use python ofcourse

    It wont, like most of my other projects help regular players.
    But people making a pserver or who just wants to change they're staff to a cosmic whore (did it ) can do it.
    Then Ill start a complete overhaul to roti, *winkwink*
    Reputation-
    Vouches
    Respect-
    Nilly, Ultran00b, JustAnoobROTMG, Nano, karolelis9, fallenhacks(cake), jaythedev
    DisRespect-
    mandela96, spaghetti master, floxxe, drillick, brendoo

  16. #13
    infern000's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    294
    Reputation
    10
    Thanks
    74
    i still dont quite get from the description what realmeye exactly does.
    @JustAnoobROTMG since this was quite "easy" as an unlock.
    can u unlock the teleport to player option in places where its locked, like oryx castle?? just wondering if that is similarily easy to do or if its serverside checked...

  17. #14
    JustAnoobROTMG's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    1,916
    Reputation
    185
    Thanks
    18,230
    I tried a long time ago to allow teleporting into castle : menu works fine but server respond "not allowed on this map".
    Same problem with teleport delay.. Server blocks me.

    No way.
    Due to a recent DMCA takedown attempt we had to remove Faintmako brain. Please do not paid attention to what he say or do.


  18. #15
    redex's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    United States
    Posts
    37
    Reputation
    10
    Thanks
    8
    My Mood
    Mellow
    Another idea I would like to implement is to remove the black and white filter that is applied to the screen when you are paused.

    I think it would be really cool to bring an alt with your guild into a tomb running a fullscreen client, pause it in the corner and use fraps to record the whole boss battle in full color!

    you could go over the fight later with your guild and critique each other, and find out who it really was that awoke Geb early

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [WTS] Realm of The Mad God Items
    By rawr153 in forum Selling Accounts/Keys/Items
    Replies: 2
    Last Post: 01-27-2013, 02:50 PM
  2. [Help] How do i add things to players in monky menu?
    By boxybox100 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 6
    Last Post: 01-15-2013, 02:18 AM
  3. Realm Eye
    By notez4 in forum Realm of the Mad God Discussions
    Replies: 4
    Last Post: 12-12-2012, 11:16 AM
  4. [WTB] RSGP With Realm of the mad god items
    By Cinodor in forum Buying Accounts/Keys/Items
    Replies: 7
    Last Post: 11-28-2012, 07:15 PM
  5. my CF menu item
    By undergroundhack in forum C++/C Programming
    Replies: 0
    Last Post: 04-26-2009, 12:50 PM