Results 1 to 7 of 7
  1. #1
    Punder's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    nrelay client into a realm

    How can I get my nrelay clients to enter existing realms?

  2. #2
    citydrifter's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    653
    Reputation
    32
    Thanks
    2,436
    My Mood
    Yeehaw
    ID of Realm
    ./game-ids.ts


    Code:
      RandomRealm = -3,
    Last edited by citydrifter; 11-12-2018 at 10:22 PM.

  3. The Following User Says Thank You to citydrifter For This Useful Post:

    Punder (11-17-2018)

  4. #3
    kmilito7's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    i'm looking for the same. How can i put a specific client from the account list into a realm using nrelay ofc

  5. #4
    Gravitir3.14's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Location
    Russia - Moscow
    Posts
    548
    Reputation
    92
    Thanks
    9,935
    Quote Originally Posted by kmilito7 View Post
    i'm looking for the same. How can i put a specific client from the account list into a realm using nrelay ofc
    Send reconnect packet, use "random realm" gameID to connect or go to place with portals, go to closest portal and hook his objectID, then use "enter portal" packet.

  6. The Following 2 Users Say Thank You to Gravitir3.14 For This Useful Post:

    BoredBro (11-16-2018),Punder (11-17-2018)

  7. #5
    kmilito7's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    Quote Originally Posted by Gravitir3.14 View Post


    Send reconnect packet, use "random realm" gameID to connect or go to place with portals, go to closest portal and hook his objectID, then use "enter portal" packet.
    could you give me an example?

  8. #6
    ArkMods's Avatar
    Join Date
    Sep 2016
    Gender
    male
    Location
    DWORD* loc = nullptr;
    Posts
    192
    Reputation
    10
    Thanks
    63
    My Mood
    Sleepy
    Change alias of the client to be your desired realm name or, add a new field to Account interface.
    Code:
    import { Client, Library, PacketHook } from './../core';
    import { MapInfoPacket } from '../networking';
    import { GameId } from '../networking/game-ids'; @Library({
      name: 'Realm Joiner Plugin',
      author: 'Ark'
    })
    class RealmFiller {
        @PacketHook()
        onMapInfo(client: Client, mapInfo: MapInfoPacket): void {
            if (mapInfo.name != 'NexusPortal.' + client.alias) {
                setTimeout(() => {
                    client.changeGameId(GameId.RandomRealm);
                }, 1000)
            }
        }

  9. The Following User Says Thank You to ArkMods For This Useful Post:

    kmilito7 (11-19-2018)

  10. #7
    kmilito7's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    Quote Originally Posted by ArkMods View Post
    Change alias of the client to be your desired realm name or, add a new field to Account interface.
    Code:
    import { Client, Library, PacketHook } from './../core';
    import { MapInfoPacket } from '../networking';
    import { GameId } from '../networking/game-ids'; @Library({
      name: 'Realm Joiner Plugin',
      author: 'Ark'
    })
    class RealmFiller {
        @PacketHook()
        onMapInfo(client: Client, mapInfo: MapInfoPacket): void {
            if (mapInfo.name != 'NexusPortal.' + client.alias) {
                setTimeout(() => {
                    client.changeGameId(GameId.RandomRealm);
                }, 1000)
            }
        }
    tysm
    /10chars
    another question, any wayto get the world number of a realm?
    Last edited by kmilito7; 11-19-2018 at 05:09 PM. Reason: fixed error- no repost

Similar Threads

  1. Hacked client for Nath Realms
    By Advork in forum Realm of the Mad God Private Servers
    Replies: 12
    Last Post: 07-14-2015, 02:43 PM
  2. [Outdated] Hacked client for clark realms
    By Kierze in forum Realm of the Mad God Private Servers
    Replies: 69
    Last Post: 05-18-2015, 06:09 PM
  3. [Help Request] ROTMG client modded to Realm Relay
    By aeonix in forum Realm of the Mad God Help & Requests
    Replies: 4
    Last Post: 07-08-2014, 06:13 PM
  4. [Text Tutorial] How to make setpieces spawn into the realm.
    By sacredmike in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 7
    Last Post: 09-08-2013, 08:10 PM
  5. Hacked Client for the Realm Of The Mad God Testserver
    By BrummBro in forum Realm of the Mad God Help & Requests
    Replies: 12
    Last Post: 10-17-2012, 01:28 AM