Results 1 to 14 of 14
  1. #1
    pLolz's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    659
    My Mood
    Amazed

    Post Ghost Ship and Hermit Behaviors.

    I already know that the Phoenix source was made public. But I still wanted to share with you these mobs.
    Hermit God's setpiece was made by @Lunatis If I remember correctly the rest of it (behaviors and stuff) was made by me..
    The Ghost Ship was entirely made by me .. I saw that these were stored on the server..

     


    Edit : Ghost Ship's Vengeful Spirit appears invisible. because in db/data/data34.xml the code
    Code:
        <Object type="0x0e39" id="Vengeful Spirit"> 
    		<Class>Character</Class>
            <AnimatedTexture><File>chars16x16rEncounters</File><Index>39</Index></AnimatedTexture>
    		<HitSound>monster/flaming_skulls_hit</HitSound>
    		<DeathSound>monster/beholder_death</DeathSound>
    		<MaxHitPoints>2000</MaxHitPoints>
    		<XpMult>0</XpMult>
    		<Enemy/>
    		<Size>0</Size>
    		<ShadowSize>80</ShadowSize>
    		<Z>0.3</Z>
    		<Flying/>
           
    		<Projectile>
    			<ObjectId>Ghostly Blast</ObjectId>
    			<Speed>85</Speed>
    			<Damage>65</Damage>
                <Size>100</Size>
    			<LifetimeMS>600</LifetimeMS>
    		</Projectile>
            
    	</Object>
    Has size 0, in addition.xml add this :
    Code:
           <Object type="0x0e3b" id="Tempest Cloud">
    		<Enemy/>
    		<Class>Character</Class>
    		
    		<Texture><File>invisible</File><Index>0</Index></Texture>
            
            <AltTexture id="1">
                <Texture><File>lofiObjBig</File><Index>0x33</Index></Texture>
            </AltTexture>
            <AltTexture id="2">
                <Texture><File>lofiObjBig</File><Index>0x33</Index></Texture>
            </AltTexture>
            <AltTexture id="3">
                <Texture><File>lofiObjBig</File><Index>0x34</Index></Texture>
            </AltTexture>
            <AltTexture id="4">
                <Texture><File>lofiObjBig</File><Index>0x35</Index></Texture>
            </AltTexture>
            <AltTexture id="5">
                <Texture><File>lofiObjBig</File><Index>0x36</Index></Texture>
            </AltTexture>
            <AltTexture id="6">
                <Texture><File>lofiObjBig</File><Index>0x37</Index></Texture>
            </AltTexture>
            <AltTexture id="7">
                <Texture><File>lofiObjBig</File><Index>0x38</Index></Texture>
            </AltTexture>
            <AltTexture id="8">
                <Texture><File>lofiObjBig</File><Index>0x39</Index></Texture>
            </AltTexture>
            <AltTexture id="9">
                <Texture><File>lofiObjBig</File><Index>0x3a</Index></Texture>
            </AltTexture>
            
    		<HitSound>monster/sprites_hit</HitSound>
    		<DeathSound>monster/sprites_death</DeathSound>
    		<Size>100</Size>
    		<MaxHitPoints>800</MaxHitPoints>
    		<Defense>15</Defense>
    		<Flying/>
    		<Z>0.8</Z>
    
    		
            
    		<Projectile id="0">
    			<ObjectId>Lightning Bolt</ObjectId>
    			<Damage>66</Damage>
    			<Speed>40</Speed>
    			<Size>80</Size>
    			<LifetimeMS>600</LifetimeMS>
    		</Projectile>
    		
    		
    		
            
        </Object>
        
        
         
            
        <Object type="0x0e39" id="Vengeful Spirit"> 
    		<Class>Character</Class>
            <AnimatedTexture><File>chars16x16rEncounters</File><Index>39</Index></AnimatedTexture>
    		<HitSound>monster/flaming_skulls_hit</HitSound>
    		<DeathSound>monster/beholder_death</DeathSound>
    		<MaxHitPoints>2000</MaxHitPoints>
    		<XpMult>0</XpMult>
    		<Enemy/>
    		<Size>100</Size>
    		<ShadowSize>80</ShadowSize>
    		<Z>0.3</Z>
    		<Flying/>
           
    		<Projectile>
    			<ObjectId>Ghostly Blast</ObjectId>
    			<Speed>85</Speed>
    			<Damage>65</Damage>
                <Size>100</Size>
    			<LifetimeMS>600</LifetimeMS>
    		</Projectile>
            
            
            
            
    	</Object>
    EDIT : There are some crash issues with Ghost Ship. I'm trying to fix them .
    EDIT : Fixed the crashes . Replace everything in setpiece/GhostShip.cs with the code :
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using wServer.logic.loot;
    using wServer.realm.entities;
    
    namespace wServer.realm.setpieces
    {
        class GhostShip : ISetPiece
        {
            public int Size
            {
                get { return 50; }
            }
    
            static readonly byte Tree = (byte)XmlData*****ToType["Tree Jungle"];
            static readonly byte Water = (byte)XmlData*****ToType["GhostWater"];
            static readonly byte Sand = (byte)XmlData*****ToType["Ghost Water Beach"];
    
    
           Random rand = new Random();
           public void RenderSetPiece(World world, IntPoint pos)
           {
               int DarkGrassradiu = 17;
               int sandRadius = 17;
               int waterRadius = 14;
    
               List<IntPoint> border = new List<IntPoint>();
    
               int[,] o = new int[Size, Size];
               int[,] t = new int[Size, Size];
    
               for (int y = 0; y < Size; y++)      //Outer
                   for (int x = 0; x < Size; x++)
                   {
                       double dx = x - (Size / 2.0);
                       double dy = y - (Size / 2.0);
                       double r = Math.Sqrt(dx * dx + dy * dy);
                       if (r <= sandRadius)
                           t[x, y] = 2;
                   }
               for (int y = 0; y < Size; y++)      //Water
                   for (int x = 0; x < Size; x++)
                   {
                       double dx = x - (Size / 2.0);
                       double dy = y - (Size / 2.0);
                       double r = Math.Sqrt(dx * dx + dy * dy);
                       if (r <= waterRadius)
                       {
                           t[x, y] = 3;
                       }
                   }
    
               for (int x = 0; x < Size; x++)                 
                   for (int y = 0; y < Size; y++)
                   {
                       if (((x > 5 && x < DarkGrassradiu) || (x < Size - 5 && x > Size - DarkGrassradiu) ||
                            (y > 5 && y < DarkGrassradiu) || (y < Size - 5 && y > Size - DarkGrassradiu)) &&
                           o[x, y] == 0 && t[x, y] == 1)
                       {
                               t[x, y] = 4;
                       }
                   }
               for (int x = 0; x < Size; x++)
                   for (int y = 0; y < Size; y++)
                   {
                       if (t[x, y] == 1)
                       {
                           var tile = world.Map[x + pos.X, y + pos.Y].Clone();
                           tile.TileId = Tree; tile.ObjType = 0;
                           world.Obstacles[x + pos.X, y + pos.Y] = 0;
                           world.Map[x + pos.X, y + pos.Y] = tile;
                       }
                       else if (t[x, y] == 2)
                       {
                           var tile = world.Map[x + pos.X, y + pos.Y].Clone();
                           tile.TileId = Sand; tile.ObjType = 0;
                           world.Obstacles[x + pos.X, y + pos.Y] = 0;
                           world.Map[x + pos.X, y + pos.Y] = tile;
                       }
                       else if (t[x, y] == 3)
                       {
                           var tile = world.Map[x + pos.X, y + pos.Y].Clone();
                           tile.TileId = Water; tile.ObjType = 0;
                           world.Obstacles[x + pos.X, y + pos.Y] = 0;
                           world.Map[x + pos.X, y + pos.Y] = tile;
                       }
                       else if (t[x, y] == 4)
                       {
                           var tile = world.Map[x + pos.X, y + pos.Y].Clone();
                           tile.ObjType = Tree;
                           if (tile.ObjId == 0) tile.ObjId = world.GetNextEntityId();
                           world.Obstacles[x + pos.X, y + pos.Y] = 0;
                           world.Map[x + pos.X, y + pos.Y] = tile;
                       }
                   }
               Entity Gship = Entity.Resolve(0x0e37);
    
               Entity Gshipsum = Entity.Resolve(0x0e38);
    
               Gship.Move(pos.X + 24.5f, pos.Y + 24.5f);
               world.EnterWorld(Gship);
    
               Gshipsum.Move(pos.X + 25.5f, pos.Y + 25.5f);
               world.EnterWorld(Gshipsum);
              
           }
            
    
        }
    }
    Attached Thumbnails Attached Thumbnails
    Hermit Screenshot.png  

    <b>Downloadable Files</b> Downloadable Files
    Last edited by pLolz; 10-11-2014 at 11:57 AM. Reason: Fixed Crash Issues
    CONTACT : Skype = Jailedfresh
    I guess I'm back..
     

    I'm a ROTMG private server coder... I make behaviors,setpieces,maps (bad ones just for maps !),add:items,grounds,walls,I rarely make any new commands and I also make behaviors classes (Not really everything).. I have a WIP Pserver but's just 4 friends

     

    pLolz comes from the world Lol , one of my best friends was saying Lolz in the case of Lol and I didn't wan't to copy him soo I added a p,result = p-Lol-z

  2. The Following 21 Users Say Thank You to pLolz For This Useful Post:

    addogukan5 (06-02-2015),[MPGH]Ahl (10-11-2014),Celestialz (10-15-2014),Dpalad66 (04-29-2015),drsgrsgdsg (07-23-2015),Hilicon (11-26-2014),iZiiQoOP (10-26-2017),JohnnieDerp (10-11-2015),Kloki123 (01-28-2017),LeechDoc (06-26-2019),me4ever2 (02-18-2016),Membero (10-28-2014),peeweeOMG (10-24-2014),rlvvmc (10-02-2016),sacredmike (10-11-2014),SaltyButSpeedy (10-11-2014),sebastianfra12 (12-07-2014),theprofull (03-07-2019),TJRAE%TJAJAZetjtjtjjt (10-25-2014),TRCtiago (08-05-2015),WackyLeo (03-16-2017)

  3. #2
    SaltyButSpeedy's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    England
    Posts
    81
    Reputation
    10
    Thanks
    59
    My Mood
    Twisted
    Really nice, will definitely put that into my server another time

  4. #3
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    Plolz where have you been in the last year. Haven't seen you in forever.
    Last edited by sacredmike; 10-11-2014 at 11:26 AM.
    i'm actually just a horny boy

  5. The Following 2 Users Say Thank You to sacredmike For This Useful Post:

    [MPGH]Ahl (10-11-2014),BlackRayquaza (10-11-2014)

  6. #4
    pLolz's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    659
    My Mood
    Amazed
    I think I was hiding in a cave... under a rock... playing league with my friends..
    CONTACT : Skype = Jailedfresh
    I guess I'm back..
     

    I'm a ROTMG private server coder... I make behaviors,setpieces,maps (bad ones just for maps !),add:items,grounds,walls,I rarely make any new commands and I also make behaviors classes (Not really everything).. I have a WIP Pserver but's just 4 friends

     

    pLolz comes from the world Lol , one of my best friends was saying Lolz in the case of Lol and I didn't wan't to copy him soo I added a p,result = p-Lol-z

  7. The Following 2 Users Say Thank You to pLolz For This Useful Post:

    [MPGH]Ahl (10-11-2014),BlackRayquaza (10-11-2014)

  8. #5
    BlackRayquaza's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    574
    Reputation
    10
    Thanks
    186
    My Mood
    In Love
    Quote Originally Posted by pLolz View Post
    I think I was hiding in a cave... under a rock... playing league with my friends..
    It's nice to see you back.
    YEP cock

  9. #6
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Ah pLolz finally returns.

    I will ask you politely to make the Puppet Masters Theater Behavior because it seems like you have a lot of time to do it
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  10. #7
    pLolz's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    659
    My Mood
    Amazed
    Quote Originally Posted by Ahlwong View Post
    Ah pLolz finally returns.

    I will ask you politely to make the Puppet Masters Theater Behavior because it seems like you have a lot of time to do it
    Ergh... It doesn't feel like it needs a lot of time. The behaviors of the minnions are REALLY easy to do. the final boss seems like just spamming spiralattack in some specific order. and some chargin and attacking... Doesn't seem like hard work to me.. it's probably gonna take 1 hour or 2 . But I still need to fix my problem with the new added stuff doe :s I can't do it If I can't see anything right ^_^. I'm not gonna make the map doe.. I need that from someone.
    Last edited by pLolz; 10-12-2014 at 02:09 AM.
    CONTACT : Skype = Jailedfresh
    I guess I'm back..
     

    I'm a ROTMG private server coder... I make behaviors,setpieces,maps (bad ones just for maps !),add:items,grounds,walls,I rarely make any new commands and I also make behaviors classes (Not really everything).. I have a WIP Pserver but's just 4 friends

     

    pLolz comes from the world Lol , one of my best friends was saying Lolz in the case of Lol and I didn't wan't to copy him soo I added a p,result = p-Lol-z

  11. #8
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Quote Originally Posted by pLolz View Post
    Ergh... It doesn't feel like it needs a lot of time. The behaviors of the minnions are REALLY easy to do. the final boss seems like just spamming spiralattack in some specific order. and some chargin and attacking... Doesn't seem like hard work to me.. it's probably gonna take 1 hour or 2 . But I still need to fix my problem with the new added stuff doe :s I can't do it If I can't see anything right ^_^. I'm not gonna make the map doe.. I need that from someone.
    Well they would need to make like 5 maps at least because in Prod, everytime you go into the dungeon, it is a different layout. Never the same like the Abyss.

    This would need randomized dungeons as well but that isn't hard to add in
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  12. #9
    pLolz's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    659
    My Mood
    Amazed
    Quote Originally Posted by Ahlwong View Post
    Well they would need to make like 5 maps at least because in Prod, everytime you go into the dungeon, it is a different layout. Never the same like the Abyss.

    This would need randomized dungeons as well but that isn't hard to add in
    Since I've been missing. Do we have randomized dungeons ? If so... nice.. The 5 map thing can be managed. Just like battle arenas
    CONTACT : Skype = Jailedfresh
    I guess I'm back..
     

    I'm a ROTMG private server coder... I make behaviors,setpieces,maps (bad ones just for maps !),add:items,grounds,walls,I rarely make any new commands and I also make behaviors classes (Not really everything).. I have a WIP Pserver but's just 4 friends

     

    pLolz comes from the world Lol , one of my best friends was saying Lolz in the case of Lol and I didn't wan't to copy him soo I added a p,result = p-Lol-z

  13. #10
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Quote Originally Posted by pLolz View Post
    Since I've been missing. Do we have randomized dungeons ? If so... nice.. The 5 map thing can be managed. Just like battle arenas
    We have had this for ages. It isn't had to make anyways. There should be a tutorial on this but if not, check doomed realms source for it
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  14. #11
    nilly's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2,652
    Reputation
    155
    Thanks
    13,983
    My Mood
    Angelic
    Quote Originally Posted by Ahlwong View Post
    We have had this for ages. It isn't had to make anyways. There should be a tutorial on this but if not, check doomed realms source for it
    What kind of randomization are you talking about? Curious because abyss on production has a random layout every time. Are you talking about having multiple premade maps that are chosen at random? If so, I wouldn't really call that randomized. If not, looks like I need to look into this and save me some time tackling that problem.
    Be careful, stray too far from the pack and you'll get lost.

  15. #12
    Kithio's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    641
    Reputation
    16
    Thanks
    803
    My Mood
    Innocent
    Quote Originally Posted by nilly View Post
    What kind of randomization are you talking about? Curious because abyss on production has a random layout every time. Are you talking about having multiple premade maps that are chosen at random? If so, I wouldn't really call that randomized. If not, looks like I need to look into this and save me some time tackling that problem.
    Most of Prod's dungeons use PRDG or PDG - (Procedural Random Dungeon Generation) or (Procedural Dungeon Generation).

    How they do it?
    Well it's a 3 pass system that happens almost instantaniously...

    Pass 1: They generate floorings for the entire dungeon. Spawn and Boss rooms are unique shapes so they go first, All other middle rooms are generated right after.

    Pass 2: This is where all the walls are constructed as well as blocksight is initiated (most likely just built into the wall system)

    Pass 3: In the third pass they place out all the regions and Cowardice Portal as well as the Enemy spawners are placed with a system to make sure you don't have mixed enemies... Like -- 1 Brown Slime - 1 Blue Golem and a few skeletons... They make sure that a group of enemies spawn at the same time by placing down one Enemy region per room and then sending an array of information to each of them using a randomized system to do so.
    I is pansexual furry and proud

    Server Information:
    Status: Confused

  16. #13
    nilly's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2,652
    Reputation
    155
    Thanks
    13,983
    My Mood
    Angelic
    Quote Originally Posted by Kithio View Post
    Most of Prod's dungeons use PRDG or PDG - (Procedural Random Dungeon Generation) or (Procedural Dungeon Generation).

    How they do it?
    Well it's a 3 pass system that happens almost instantaniously...

    Pass 1: They generate floorings for the entire dungeon. Spawn and Boss rooms are unique shapes so they go first, All other middle rooms are generated right after.

    Pass 2: This is where all the walls are constructed as well as blocksight is initiated (most likely just built into the wall system)

    Pass 3: In the third pass they place out all the regions and Cowardice Portal as well as the Enemy spawners are placed with a system to make sure you don't have mixed enemies... Like -- 1 Brown Slime - 1 Blue Golem and a few skeletons... They make sure that a group of enemies spawn at the same time by placing down one Enemy region per room and then sending an array of information to each of them using a randomized system to do so.
    I didn't really research the whole prdg but my idea was to make a puzzle piece matcher if you would. So one would create many separate "maps" that contain just one room for a particular dungeon. Then just write code to match up the entrances and exits of the rooms.

    Maps like abyss might be a little hard to do with a simplistic approach such as this one, I'll know for sure later when I examine multiple abyss layouts and see if I can spot patterns. The floor of abyss is pretty interesting and the only way I can think to achieve that is to make randomly generated flooring / walls as you suggest. But if you take mad lab for instance, many of the rooms look "standardized" as if they came from a predefined layout. On such maps a simple puzzle piece matcher should work.

    Supposedly we already have this feature in available sources. They use 3 pass prdg?
    Last edited by nilly; 10-14-2014 at 09:00 AM.
    Be careful, stray too far from the pack and you'll get lost.

  17. #14
    Kithio's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    641
    Reputation
    16
    Thanks
    803
    My Mood
    Innocent
    Quote Originally Posted by nilly View Post
    I didn't really research the whole prdg but my idea was to make a puzzle piece matcher if you would. So one would create many separate "maps" that contain just one room for a particular dungeon. Then just write code to match up the entrances and exits of the rooms.

    Maps like abyss might be a little hard to do with a simplistic approach such as this one, I'll know for sure later when I examine multiple abyss layouts and see if I can spot patterns. The floor of abyss is pretty interesting and the only way I can think to achieve that is to make randomly generated flooring / walls as you suggest. But if you take mad lab for instance, many of the rooms look "standardized" as if they came from a predefined layout. On such maps a simple puzzle piece matcher should work.

    Supposedly we already have this feature in available sources. They use 3 pass prdg?
    3 Pass PRDG is the most common type of random generation systems because it's the most simplistic and it works perfectly

    As you said about Abyss - Yes, it's not as easy to do because what the abyss has is a Mask that generates Lava ontop of it with a thickness of 3-5

    Explanation about 3 Pass with Masking:

    As you know the First Pass creates the floors across the dungeon. With Masking you draw a seperate layer ontop of the map that is on a curve, (Starts on the top and curves to the sides (Left or Right - Never both) and then everything that mask touches because a Lava Tile - Then in the 2nd pass when it adds in all the walls it also adds the Masking Tiles (Pathways across lava to make sure all paths are still possible to take). Then the 3rd tile just does the exact same as the normal system without masking. That's the simplest way to mimic Abysses, The Treasure Room is a different story because it's usually placed during Pass 1 right before the masking is done if there is one placed on the map. Or it is integrated into the Masking generation to make sure it doesn't take too big of a hit with Lava Tiles considering it's creating it's own tiles.

    Normally all extra presets would be added during Pass 1 or 2 but I think in this case with the Treasure Room it's either added on Pass 1 before Masking (Pass 1b) or during Pass 3 (generation of enemies and regions) in order to keep the layout. As the Treasure Room is a SetPiece that gets set down on the map where a room has a dead end towards the top usually. Meaning it will always be on the northern side of the map.

    My opinion on handling Treasure Room:
    I'd say - In order to keep the Treasure Room secure from the Masking system it'd be done in Pass 2 or Pass 3 so that it doesn't have any Lava Tiles inside of it when it's created.
    I is pansexual furry and proud

    Server Information:
    Status: Confused

Similar Threads

  1. Ghost Ship minion behaviors
    By dthnider in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 13
    Last Post: 03-13-2014, 10:55 PM
  2. Can someone get me aimbot and ghost mode and all the other good hacks.
    By Electraline in forum Combat Arms Hack Requests
    Replies: 15
    Last Post: 12-21-2011, 10:48 AM
  3. [Discussion] u tired of ship and egypt ?
    By PasterOfMuppets in forum CrossFire Discussions
    Replies: 17
    Last Post: 06-18-2011, 01:25 PM
  4. [Release] Sound Check- Ghost breath and fall sound!
    By SteamAss in forum CrossFire Mods & Rez Modding
    Replies: 22
    Last Post: 02-24-2011, 09:20 PM
  5. [Release] Nice Spots and Glitches on Mexico, Ship and Train!!!!
    By deni1 in forum CrossFire Hacks & Cheats
    Replies: 4
    Last Post: 05-11-2009, 01:13 PM

Tags for this Thread