Results 1 to 8 of 8
  1. #1
    cxydsaewq's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    954
    Reputation
    25
    Thanks
    1,341
    My Mood
    Amazed

    [SD] Quest Teleport Command

    Well yea, nothing to say really. Just teleports you to your quest if you have one..
    if you want other ranks to have permission to use this code simply change 7 to the rank you desire

    This has to be added to wServer\realm\commands\AdminCommands.cs

    Code:
    internal class TpQuestCommand : Command
        {
            public TpQuestCommand() : base("tpq", 7) { }
    
            protected override bool Process(Player player, RealmTime time, string args)
            {
                if (player.Quest == null)
                    return false;
    
                player.Move(player.Quest.X + 0.5f, player.Quest.Y + 0.5f);
                player.SetNewbiePeriod();
                player.UpdateCount++;
                player.Owner.BroadcastPacket(new GotoPacket
                {
                    ObjectId = player.Id,
                    Position = new Position
                    {
                        X = player.Quest.X,
                        Y = player.Quest.Y
                    }
                }, null);
                return true;
            }
        }

  2. #2
    MikeRaarupBirk's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1,583
    Reputation
    38
    Thanks
    3,775
    My Mood
    Stressed
    cool. This is already in most sources tho.

  3. #3
    Demon's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Lost
    Posts
    1,095
    Reputation
    86
    Thanks
    316
    My Mood
    Angelic
    Quote Originally Posted by MikeRaarupBirk View Post
    cool. This is already in most sources tho.
    Every TQ command teleports right at the boss, lol...

    without godmode dead everytime ;p
    Nice

  4. #4
    MikeRaarupBirk's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1,583
    Reputation
    38
    Thanks
    3,775
    My Mood
    Stressed
    Quote Originally Posted by DemonLives View Post
    Every TQ command teleports right at the boss, lol...

    without godmode dead everytime ;p
    so does this.

  5. #5
    Demon's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Lost
    Posts
    1,095
    Reputation
    86
    Thanks
    316
    My Mood
    Angelic
    Quote Originally Posted by MikeRaarupBirk View Post
    so does this.
    Exactly, ;p ima try to make one that doesn't ;p
    Nice

  6. #6
    MikeRaarupBirk's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1,583
    Reputation
    38
    Thanks
    3,775
    My Mood
    Stressed
    Quote Originally Posted by DemonLives View Post
    Exactly, ;p ima try to make one that doesn't ;p
    just increase the + 0.5f to something else xd

  7. #7
    Demon's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Lost
    Posts
    1,095
    Reputation
    86
    Thanks
    316
    My Mood
    Angelic
    Quote Originally Posted by MikeRaarupBirk View Post
    just increase the + 0.5f to something else xd
    lol, XD

    i'll do something neat to it then
    Nice

  8. #8
    cxydsaewq's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    954
    Reputation
    25
    Thanks
    1,341
    My Mood
    Amazed
    Quote Originally Posted by DemonLives View Post
    Every TQ command teleports right at the boss, lol...

    without godmode dead everytime ;p
    yea because it's meant to be for admins only.
    You can also add invulnerability for 1 sec if you want non admins to use it

Similar Threads

  1. Teleporting To The Quest Boss.
    By Hackinet in forum Realm of the Mad God Discussions
    Replies: 10
    Last Post: 05-22-2016, 02:52 AM
  2. [Outdated] ForeverRotMG Teleport to Quest Client
    By filenub in forum Realm of the Mad God Private Servers
    Replies: 22
    Last Post: 07-29-2014, 01:55 PM
  3. Teleporting directly to the quest bosses
    By EdenWrath in forum Realm of the Mad God Help & Requests
    Replies: 10
    Last Post: 05-02-2014, 02:06 PM
  4. Adventure Quest Hacks.
    By zero_cool in forum General Game Hacking
    Replies: 12
    Last Post: 05-03-2009, 02:00 PM
  5. Adventure Quest Hacks I made.
    By zero_cool in forum General Game Hacking
    Replies: 17
    Last Post: 11-18-2006, 08:50 PM