Thread: [FSOD] Stuff

Results 1 to 9 of 9
  1. #1
    Demon's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Lost
    Posts
    1,095
    Reputation
    86
    Thanks
    316
    My Mood
    Angelic

    [FSOD] Stuff

    Code:
    #region
    
    using wServer.logic.behaviors;
    using wServer.logic.loot;
    using wServer.logic.transitions;
    
    #endregion
    
    namespace wServer.logic
    {
        partial class BehaviorDb
        {
            private _ Davic = () => Behav()
                .Init("Da Vic",
                    new State(
                        new State("pause",
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new TimedTransition(1000, "start")
                            ),
                        new State("start",
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new Taunt("Hmm, You Dare To Fight Me?"),
                            new TimedTransition(1500, "attack")
                            ),
                        new State("attack",
                            new Prioritize(
                                new StayCloseToSpawn(0.3, 7)
                                ),
                          new State("fight",
                              new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 40, coolDown: 100),
                              new Shoot(2, projectileIndex: 1, count: 3, fixedAngle: 30, coolDown: 100),
                              new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 20, coolDown: 100),
                              new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
                              new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 40, coolDown: 100)
                                ),
                            new State("NubShield2.0",
                              new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
                              new Shoot(2, projectileIndex: 2, count: 3, fixedAngle: 80, coolDown: 100),
                              new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
                              new Shoot(2, projectileIndex: 1, count: 3, fixedAngle: 80, coolDown: 100),
                              new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 90, coolDown: 100)
                                ),
                            new Shoot(25, projectileIndex: 1, count: 2, shootAngle: 10, predictive: 0.4, coolDown: 1000,
                                coolDownOffset: 500),
                              new Shoot(25, projectileIndex: 2, count: 3, shootAngle: 10, predictive: 0.6, coolDown: 1000,
                                coolDownOffset: 500),
                              new Shoot(25, projectileIndex: 1, count: 2, shootAngle: 10, predictive: 0.8, coolDown: 1000,
                                coolDownOffset: 500),
                            new TimedTransition(3000, "Warning")
                            ),
                        new State("Warning",
                            new Prioritize(
                                new StayCloseToSpawn(0.5, 7)
                                ),
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new Flash(0xff00ff00, 0.2, 15),
                            new TimedTransition(3000, "summon")
                            ),
                        new State("summon",
                            new Prioritize(
                                new StayCloseToSpawn(0.85, 7)
                                ),
                            new Shoot(10, projectileIndex: 0, coolDown: 1000),
                            new TossObject("Da Vic Ghost", 6, 45, 3100), //this has to change
                            new TossObject("Da Vic Ghost", 6, 135, 3100), //this has to change
                            new TossObject("Da Vic Ghost", 6, 225, 3100), //this has to change
                            new TossObject("Da Vic Ghost", 6, 315, 3100), //this has to chage
                            new State("invulnerable_clone",
                                new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                                new TimedTransition(3000, "vulnerable_clone")
                                ),
                            new State("NubShield2.0",
                                new TimedTransition(1200, "Warning2")
                                ),
                            new TimedTransition(10000, "shit")
                            ),
                        new State("NubShield2.0",
                            new Prioritize(
                                new StayCloseToSpawn(0.85, 7)
                                ),
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new Flash(0xff00ff00, 0.2, 25),
                            new TimedTransition(5000, "shit")
                            ),
                        new State("shit",
                            new Prioritize(
                                new StayCloseToSpawn(0.6, 7)
                                ),
                            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 120, coolDown: 900),
                            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 40, coolDown: 1600,
                                coolDownOffset: 0),
                            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 220, coolDown: 1600,
                                coolDownOffset: 0),
                            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 130, coolDown: 1600,
                                coolDownOffset: 800),
                            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 310, coolDown: 1600,
                                coolDownOffset: 800),
                            new State("invulnerable_whoa",
                                new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                                new TimedTransition(2600, "vulnerablew")
                                ),
                            new State("vulnerablew",
                                new TimedTransition(1200, "invulnerable_whoa")
                                ),
                            new TimedTransition(10000, "Absolutely_Massive")
                            ),
                        new State("NubShield2.0",
                            new ChangeSize(13, 240),
                            new Prioritize(
                                new StayCloseToSpawn(0.2, 7),
                                new Wander(0.2)
                                ),
                            new Shoot(10, projectileIndex: 0, count: 9, shootAngle: 40, fixedAngle: 40, coolDown: 1500,
                                coolDownOffset: 400),
                            new Shoot(10, projectileIndex: 0, count: 9, shootAngle: 40, fixedAngle: 60, coolDown: 2000,
                                coolDownOffset: 800),
                            new Shoot(10, projectileIndex: 2, count: 9, shootAngle: 40, fixedAngle: 50, coolDown: 2500,
                                coolDownOffset: 1200),
                            new Shoot(10, projectileIndex: 2, count: 9, shootAngle: 40, fixedAngle: 70, coolDown: 3000,
                                coolDownOffset: 1600),
                            new State("invulnerablem",
                                new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                                new TimedTransition(2600, "vulnerablem")
                                ),
                            new State("vulnerablem",
                                new TimedTransition(1000, "invulnerablem")
                                ),
                            new TimedTransition(30000, "again")
                            ),
                        new State("again",
                            new ChangeSize(-20, 100),
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new TimedTransition(3000, "attack")
                            )
                        ),
                    new Threshold(1,
                        new ItemLoot("Potion of Life", 1)
                    ),
                    new Threshold(0.03,
                        new ItemLoot("Suit", 0.2) //change
                       )
                )
                .Init("Da Vic Ghost",
                    new State(
                        new Prioritize(
                            new StayCloseToSpawn(0.85, range: 5)
                            ),
                        new Shoot(10, coolDown: 1000),
                        new State("taunt",
                            new Taunt(0.09, "Protect the King"),
                            new TimedTransition(1000, "no_taunt")
                            ),
                        new State("no_taunt",
                            new TimedTransition(1000, "taunt")
                            ),
                        new Decay(17000)
                        )
                )
                .Init("Da Vic Eyes",
                    new State(
                        new State("attack",
                            new Shoot(10, predictive: 0.3, coolDown: 500),
                            new State("keep_distance",
                                new Prioritize(
                                    new StayCloseToSpawn(1, 12),
                                    new Orbit(0.7, 3, 10, "Da Vic")
                                    ),
                                new TimedTransition(2000, "go_anywhere")
                                ),
                            new State("go_anywhere",
                                new TimedTransition(2000, "keep_distance")
                                )
                            )
                        )
                )
                ;
        }
    }

    -------------------------------------------------------------------------------------
    Code:
    XML's
    
    code:
      <Object type="0xefe8" id="Da Vic Ghost">
        <Group>Gods</Group>
        <Enemy/>
        <Class>Character</Class>
          <AnimatedTexture>
             <File>chars16x16dEncounters2</File>
             <Index>97</Index>
          </AnimatedTexture>
        <HitSound>monster/djinn_hit</HitSound>
        <DeathSound>monster/djinn_death</DeathSound>
        <Size>150</Size>
        <MaxHitPoints>5000</MaxHitPoints>
        <Defense>40</Defense>
        <XpMult>1.0</XpMult>
        <God/>
    
        <Projectile id="0">
          <ObjectId>White Beam</ObjectId>
          <Damage>120</Damage>
          <Speed>100</Speed>
          <LifetimeMS>2000</LifetimeMS>
          <Size>150</Size>
        </Projectile>
    
      </Object>
      
      <Object type="0xefe7" id="Da Vic Eyes">
        <Group>Gods</Group>
        <Enemy/>
        <Class>Character</Class>
          <AnimatedTexture>
             <File>chars16x16dEncounters2</File>
             <Index>96</Index>
          </AnimatedTexture>
        <HitSound>monster/djinn_hit</HitSound>
        <DeathSound>monster/djinn_death</DeathSound>
        <Size>150</Size>
        <MaxHitPoints>50000</MaxHitPoints>
        <Defense>40</Defense>
        <XpMult>0.5</XpMult>
        <God/>
    
        <Projectile id="0">
          <ObjectId>Golden Blast</ObjectId>
          <Damage>120</Damage>
          <Speed>40</Speed>
          <LifetimeMS>2000</LifetimeMS>
          <ConditionEffect duration="3">Stunned</ConditionEffect>
          <Size>150</Size>
        </Projectile>
    
      </Object>
      
      <Object type="0xefe6" id="Da Vic">
        <Group>Vic</Group>
        <Enemy/>
        <Class>Character</Class>
          <AnimatedTexture>
             <File>chars16x16dEncounters2</File>
             <Index>95</Index>
          </AnimatedTexture>
        <HitSound>monster/djinn_hit</HitSound>
        <DeathSound>monster/djinn_death</DeathSound>
        <Size>150</Size>
        <MaxHitPoints>200000</MaxHitPoints>
        <Defense>40</Defense>
        <XpMult>5.0</XpMult>
        <God/>
    
        <Projectile id="0">
          <ObjectId>Da Vic S1</ObjectId>
          <Damage>150</Damage>
          <Speed>100</Speed>
          <Size>70</Size>
          <LifetimeMS>1500</LifetimeMS>
          <MultiHit/>
        </Projectile>
        <Projectile id="1">
          <ObjectId>Da Vic Blast</ObjectId>
          <Damage>70</Damage>
          <Speed>100</Speed>
          <Size>100</Size>
          <LifetimeMS>1500</LifetimeMS>
          <ConditionEffect duration="2.75">Unstable</ConditionEffect>
          <MultiHit/>
        </Projectile>
        <Projectile id="2">
          <ObjectId>Da Vic S2</ObjectId>
          <Damage>150</Damage>
          <Speed>70</Speed>
          <Size>100</Size>
          <LifetimeMS>1500</LifetimeMS>
          <MultiHit/>
        </Projectile>
        <DisplayId>{Da vic}</DisplayId>
      </Object>
    - - - Updated - - -

    Btw How Do You Do The Code Box Thingy :/
    Last edited by Demon; 10-21-2016 at 09:28 AM.

  2. The Following User Says Thank You to Demon For This Useful Post:

    inujoshua101 (01-05-2018)

  3. #2
    Riigged's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    no
    Posts
    3,846
    Reputation
    401
    Thanks
    10,254
    My Mood
    Devilish
    Quote Originally Posted by DemonLives View Post
    Btw How Do You Do The Code Box Thingy :/
    [CODE]enter code here[/CODE ] <--- No space next to the E, though

    Code:
    #region
    
    using wServer.logic.behaviors;
    using wServer.logic.loot;
    using wServer.logic.transitions;
    
    #endregion
    
    namespace wServer.logic
    {
        partial class BehaviorDb
        {
            private _ Davic = () => Behav()
            .Init("Da Vic",
            new State(
            new State("pause",
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new TimedTransition(1000, "start")
            ),
            new State("start",
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new Taunt("Hmm, You Dare To Fight Me?"),
            new TimedTransition(1500, "attack")
            ),
            new State("attack",
            new Prioritize(
            new StayCloseToSpawn(0.3, 7)
            ),
            new State("fight",
            new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 40, coolDown: 100),
            new Shoot(2, projectileIndex: 1, count: 3, fixedAngle: 30, coolDown: 100),
            new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 20, coolDown: 100),
            new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
            new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 40, coolDown: 100)
            ),
            new State("NubShield2.0",
            new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
            new Shoot(2, projectileIndex: 2, count: 3, fixedAngle: 80, coolDown: 100),
            new Shoot(2, projectileIndex: 0, count: 3, predictive: 1, coolDown: 100),
            new Shoot(2, projectileIndex: 1, count: 3, fixedAngle: 80, coolDown: 100),
            new Shoot(2, projectileIndex: 0, count: 3, fixedAngle: 90, coolDown: 100)
            ),
            new Shoot(25, projectileIndex: 1, count: 2, shootAngle: 10, predictive: 0.4, coolDown: 1000,
            coolDownOffset: 500),
            new Shoot(25, projectileIndex: 2, count: 3, shootAngle: 10, predictive: 0.6, coolDown: 1000,
            coolDownOffset: 500),
            new Shoot(25, projectileIndex: 1, count: 2, shootAngle: 10, predictive: 0.8, coolDown: 1000,
            coolDownOffset: 500),
            new TimedTransition(3000, "Warning")
            ),
            new State("Warning",
            new Prioritize(
            new StayCloseToSpawn(0.5, 7)
            ),
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new Flash(0xff00ff00, 0.2, 15),
            new TimedTransition(3000, "summon")
            ),
            new State("summon",
            new Prioritize(
            new StayCloseToSpawn(0.85, 7)
            ),
            new Shoot(10, projectileIndex: 0, coolDown: 1000),
            new TossObject("Da Vic Ghost", 6, 45, 3100), //this has to change
            new TossObject("Da Vic Ghost", 6, 135, 3100), //this has to change
            new TossObject("Da Vic Ghost", 6, 225, 3100), //this has to change
            new TossObject("Da Vic Ghost", 6, 315, 3100), //this has to chage
            new State("invulnerable_clone",
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new TimedTransition(3000, "vulnerable_clone")
            ),
            new State("NubShield2.0",
            new TimedTransition(1200, "Warning2")
            ),
            new TimedTransition(10000, "shit")
            ),
            new State("NubShield2.0",
            new Prioritize(
            new StayCloseToSpawn(0.85, 7)
            ),
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new Flash(0xff00ff00, 0.2, 25),
            new TimedTransition(5000, "shit")
            ),
            new State("shit",
            new Prioritize(
            new StayCloseToSpawn(0.6, 7)
            ),
            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 120, coolDown: 900),
            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 40, coolDown: 1600,
            coolDownOffset: 0),
            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 220, coolDown: 1600,
            coolDownOffset: 0),
            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 130, coolDown: 1600,
            coolDownOffset: 800),
            new Shoot(10, projectileIndex: 2, count: 3, shootAngle: 15, fixedAngle: 310, coolDown: 1600,
            coolDownOffset: 800),
            new State("invulnerable_whoa",
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new TimedTransition(2600, "vulnerablew")
            ),
            new State("vulnerablew",
            new TimedTransition(1200, "invulnerable_whoa")
            ),
            new TimedTransition(10000, "Absolutely_Massive")
            ),
            new State("NubShield2.0",
            new ChangeSize(13, 240),
            new Prioritize(
            new StayCloseToSpawn(0.2, 7),
            new Wander(0.2)
            ),
            new Shoot(10, projectileIndex: 0, count: 9, shootAngle: 40, fixedAngle: 40, coolDown: 1500,
            coolDownOffset: 400),
            new Shoot(10, projectileIndex: 0, count: 9, shootAngle: 40, fixedAngle: 60, coolDown: 2000,
            coolDownOffset: 800),
            new Shoot(10, projectileIndex: 2, count: 9, shootAngle: 40, fixedAngle: 50, coolDown: 2500,
            coolDownOffset: 1200),
            new Shoot(10, projectileIndex: 2, count: 9, shootAngle: 40, fixedAngle: 70, coolDown: 3000,
            coolDownOffset: 1600),
            new State("invulnerablem",
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new TimedTransition(2600, "vulnerablem")
            ),
            new State("vulnerablem",
            new TimedTransition(1000, "invulnerablem")
            ),
            new TimedTransition(30000, "again")
            ),
            new State("again",
            new ChangeSize(-20, 100),
            new ConditionalEffect(ConditionEffectIndex.Invulnerabl e),
            new TimedTransition(3000, "attack")
            )
            ),
            new Threshold(1,
            new ItemLoot("Potion of Life", 1)
            ),
            new Threshold(0.03,
            new ItemLoot("Suit", 0.2) //change
            )
            )
            .Init("Da Vic Ghost",
            new State(
            new Prioritize(
            new StayCloseToSpawn(0.85, range: 5)
            ),
            new Shoot(10, coolDown: 1000),
            new State("taunt",
            new Taunt(0.09, "Protect the King"),
            new TimedTransition(1000, "no_taunt")
            ),
            new State("no_taunt",
            new TimedTransition(1000, "taunt")
            ),
            new Decay(17000)
            )
            )
            .Init("Da Vic Eyes",
            new State(
            new State("attack",
            new Shoot(10, predictive: 0.3, coolDown: 500),
            new State("keep_distance",
            new Prioritize(
            new StayCloseToSpawn(1, 12),
            new Orbit(0.7, 3, 10, "Da Vic")
            ),
            new TimedTransition(2000, "go_anywhere")
            ),
            new State("go_anywhere",
            new TimedTransition(2000, "keep_distance")
            )
            )
            )
            )
            ;
        }
    }
    Code:
    <Object type="0xefe8" id="Da Vic Ghost">
    <Group>Gods</Group>
    <Enemy/>
    <Class>Character</Class>
    <AnimatedTexture>
    <File>chars16x16dEncounters2</File>
    <Index>97</Index>
    </AnimatedTexture>
    <HitSound>monster/djinn_hit</HitSound>
    <DeathSound>monster/djinn_death</DeathSound>
    <Size>150</Size>
    <MaxHitPoints>5000</MaxHitPoints>
    <Defense>40</Defense>
    <XpMult>1.0</XpMult>
    <God/>
    
    <Projectile id="0">
    <ObjectId>White Beam</ObjectId>
    <Damage>120</Damage>
    <Speed>100</Speed>
    <LifetimeMS>2000</LifetimeMS>
    <Size>150</Size>
    </Projectile>
    
    </Object>
    
    <Object type="0xefe7" id="Da Vic Eyes">
    <Group>Gods</Group>
    <Enemy/>
    <Class>Character</Class>
    <AnimatedTexture>
    <File>chars16x16dEncounters2</File>
    <Index>96</Index>
    </AnimatedTexture>
    <HitSound>monster/djinn_hit</HitSound>
    <DeathSound>monster/djinn_death</DeathSound>
    <Size>150</Size>
    <MaxHitPoints>50000</MaxHitPoints>
    <Defense>40</Defense>
    <XpMult>0.5</XpMult>
    <God/>
    
    <Projectile id="0">
    <ObjectId>Golden Blast</ObjectId>
    <Damage>120</Damage>
    <Speed>40</Speed>
    <LifetimeMS>2000</LifetimeMS>
    <ConditionEffect duration="3">Stunned</ConditionEffect>
    <Size>150</Size>
    </Projectile>
    
    </Object>
    
    <Object type="0xefe6" id="Da Vic">
    <Group>Vic</Group>
    <Enemy/>
    <Class>Character</Class>
    <AnimatedTexture>
    <File>chars16x16dEncounters2</File>
    <Index>95</Index>
    </AnimatedTexture>
    <HitSound>monster/djinn_hit</HitSound>
    <DeathSound>monster/djinn_death</DeathSound>
    <Size>150</Size>
    <MaxHitPoints>200000</MaxHitPoints>
    <Defense>40</Defense>
    <XpMult>5.0</XpMult>
    <God/>
    
    <Projectile id="0">
    <ObjectId>Da Vic S1</ObjectId>
    <Damage>150</Damage>
    <Speed>100</Speed>
    <Size>70</Size>
    <LifetimeMS>1500</LifetimeMS>
    <MultiHit/>
    </Projectile>
    <Projectile id="1">
    <ObjectId>Da Vic Blast</ObjectId>
    <Damage>70</Damage>
    <Speed>100</Speed>
    <Size>100</Size>
    <LifetimeMS>1500</LifetimeMS>
    <ConditionEffect duration="2.75">Unstable</ConditionEffect>
    <MultiHit/>
    </Projectile>
    <Projectile id="2">
    <ObjectId>Da Vic S2</ObjectId>
    <Damage>150</Damage>
    <Speed>70</Speed>
    <Size>100</Size>
    <LifetimeMS>1500</LifetimeMS>
    <MultiHit/>
    </Projectile>
    <DisplayId>{Da vic}</DisplayId>
    </Object>

     








  4. The Following User Says Thank You to Riigged For This Useful Post:

    Demon (10-21-2016)

  5. #3
    Demon's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Lost
    Posts
    1,095
    Reputation
    86
    Thanks
    316
    My Mood
    Angelic
    Btw Theirs Some Nub Protection So Make Changes Urself

  6. The Following User Says Thank You to Demon For This Useful Post:

    bog624 (03-15-2017)

  7. #4
    katiente's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    153
    Reputation
    10
    Thanks
    8
    My Mood
    Bored
    The title could be less vague, but nice behaviours.

  8. #5
    FinnishFX's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Location
    Somewhere
    Posts
    203
    Reputation
    16
    Thanks
    48
    My Mood
    Psychedelic
    People have been posting a lot of behaviors here, anyway nice behavior.

  9. #6
    AzzyG's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Location
    I Think The Worst Thing You Can Do About a Situation Is Nothing
    Posts
    1,732
    Reputation
    261
    Thanks
    476
    Thanks for releasin this, I'll try it

  10. #7
    XxNooooooobsxX's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    0
    What do you call BehaviourDb.(what name here).cs

  11. #8
    Yul0627's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    3
    My Mood
    Amused
    You can call it what every you want

  12. #9
    inujoshua101's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    2
    My Mood
    Confused
    Haha, I saw this a long time ago and it didn't work at all. Now that im a bit more experienced with behaviours I notice all your "NubShields" *wink* *wink*

    Makes me feel good how I notice that I've gotten better as time went by

Similar Threads

  1. How do I get alchemist tokens to buy stuff in nexus? (FSOD)
    By Locinsya in forum Realm of the Mad God Private Servers Help
    Replies: 3
    Last Post: 09-15-2016, 03:32 PM
  2. Stupid People Doing Stupid Stuff!
    By Dave84311 in forum General
    Replies: 9
    Last Post: 08-22-2007, 11:54 PM
  3. Where could I learn C++? (Beginner, and Advanced stuff)
    By TsumikiriX in forum C++/C Programming
    Replies: 8
    Last Post: 07-19-2006, 08:11 PM
  4. New Warrock Skin Stuff
    By Kyojiro in forum WarRock - International Hacks
    Replies: 17
    Last Post: 02-20-2006, 09:55 AM
  5. Korean Warrock Uboat And Other stuff :D
    By Kyojiro in forum WarRock - International Hacks
    Replies: 11
    Last Post: 01-19-2006, 02:56 PM