1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. Hey Guest, is it this your first time on the forums?

    Visit the Beginner's Box

    Introduce yourself, read some of the ins and outs of the community, access to useful links and information.

    Dismiss Notice

The Mysterious "Jeep" game mode...

Discussion in 'General Discussion' started by thebonesauce, Sep 14, 2013.

  1. thebonesauce

    thebonesauce All life begins and ends with Nu Staff Alumni
    1. MOLEing Over Large Estates - [MOLE]
    2. The Ivory Tower of Grammar-Nazis

    Messages:
    2,554
    So I'm sure everyone has seen it. Time for speculation!

    Judging by the sprites and maps and shit, it looks like a remake of Jackal for the NES.
     
    Piano, DrZaloski, Atheon and 2 others like this.
  2. Jlordo

    Jlordo Nobody Donator

    Messages:
    417
    Holy shit. Just check the KAG BETA folder. What kind of maps are those? And in the entities, It has "Bullet" files. And Homing? And a Jeep and a Horn. What is this?
     
  3. Mazey

    Mazey Haxor Global Moderator Forum Moderator Staff Alumni Donator Official Server Admin

    Messages:
    1,914
    What happens if you doubles click 'jeepjeep.bat' in the main KAG folder? (Can't test -- not on Windows.)
    Looking to maps and sprites makes it looks like a very weird snake game mode with all kinds of stuff + your view on the game is from top.
     
  4. Jlordo

    Jlordo Nobody Donator

    Messages:
    417
    Gah. When I clicked on it, it opened the normal launcher. I hit PLAY, and this stuff came up:
    Opened to this: screen-13-09-14-09-54-10.png
    Hit Esc:
    screen-13-09-14-09-54-49.png
    Hit Servers:
    screen-13-09-14-09-54-58.png
    I couldn't join anything so I hit esc and Quit To Menu.
    It asked me to log in with the login window on that blue background screen. I did. Then it acted like the normal client though I still couldn't join anything.
    screen-13-09-14-09-55-22.png
    E: Seems as if some of the stuff I hit f4 on didn't save so that's why some stuff is missing.
    Gonna go test some more stuff in it. If I find anything interesting I'll post.
     
  5. kedram

    kedram Drill Rusher Tester

    Messages:
    449
    this is the devs preparing for the 100,000+ players to come with steam :3
     
  6. eamono

    eamono Arsonist

    Messages:
    498
    This might be a tiny bit of an overestimate lol


    OT: If I had to guess the jeep gamemode is probably just one of the devs testing out what was possible via modding, I'm not on a computer with KAG on it right now but from what others are saying that's my guess
     
  7. Yagger

    Yagger Kouji's bitch 5eva Staff Alumni Tester
    1. SharSharShar - [SHARK]

    Messages:
    646
    soldat V2 in KAG.
     
    Apronymous, Atheon and Invaders like this.
  8. As a tester, I can tell you that the answer lies within those cyphers and letters:
    t3g0i3e
    lbhef3y
    ss4tt07
     
    Atheon and FuzzyBlueBaron like this.
  9. LucasTT

    LucasTT Haxor Tester

    Messages:
    455
    awesome
     
  10. Bint

    Bint Haxor

    Messages:
    536
    Three 3s!? Half L...nah
     
    Guitarman likes this.
  11. Ninja12

    Ninja12 Haxor

    Messages:
    223
    It is probably a modern age gamemode with cars and soldiers and helipads and stuff.
    Lol jk.
     
  12. eamono

    eamono Arsonist

    Messages:
    498
    I smell a troll :huh?:
     
    Klokinator, Atheon and Beef like this.
  13. MrError

    MrError Ballista Bolt Thrower

    Messages:
    112
  14. eamono

    eamono Arsonist

    Messages:
    498
    interesting, I wasn't expecting it to be top down. I think this is either A. parts of a complete overhaul mod one of the devs made, B. the devs trolling everyone with fake files, or C. something different all together, perhaps parts of another project
     
  15. Mazey

    Mazey Haxor Global Moderator Forum Moderator Staff Alumni Donator Official Server Admin

    Messages:
    1,914
    d. getis sprites are unclear and we just dont see what it is
     
    Atheon and tlc2011 like this.
  16. eamono

    eamono Arsonist

    Messages:
    498
    that too, but the top 3 sprites are very clearly top-down jeep/car sprites, and some of the other ones look like motercycle handles, part of a steering wheel, and the steering part of an ATV. But besides that they are unclear
     
  17. Ninja12

    Ninja12 Haxor

    Messages:
    223
    Maybe it's another attempt at a hat by Geti... :3
     
    tlc2011 likes this.
  18. thebonesauce

    thebonesauce All life begins and ends with Nu Staff Alumni
    1. MOLEing Over Large Estates - [MOLE]
    2. The Ivory Tower of Grammar-Nazis

    Messages:
    2,554
    Haven't any of you faggots played Jackal?!
     
    Atheon and Guitarman like this.
  19. Looks like a top down run and gun multiplayer game. The maps are all top down, the sprite is top down.

    Looks like it's one shot kill
    Code:
    f32 onHit( CBlob@ this, Vec2f worldPoint, Vec2f velocity, f32 damage, CBlob@ hitterBlob, u8 customData )
    {
        if (damage > 0.0f)
        {
            this.server_Die();
        }
    
        return 0.0f;
    }
    Looks like you die if you bump into shit while going too fast as well
    Has upgradeable weapons that are dropped on the map after a certain amount of time I guess
    Code:
    case Upgrade::regularGun:
            sprite.SetAnimation("regularGun");
            break;
        case Upgrade::diagonalGun:
            sprite.SetAnimation("diagonalGun");
            break;
        case Upgrade::bomb:
            sprite.SetAnimation("bomb");
            break;
        case Upgrade::homingRocket:
            sprite.SetAnimation("homingRocket");
            break;
        case Upgrade::sideSaw:
            sprite.SetAnimation("sideSaw");
            break;
        default:
            break;
    Code:
    if ( time > this.get_u32( "last upgrades time") + spawnUpgradesInterval )
        {                            
            Vec2f[] upgrades;            
            if (map.getMarkers("upgrade", upgrades))
            {                        
                for (uint i = 0; i < upgrades.length; i++)
                {
                    Vec2f pos = upgrades[i];
                    const f32 tilesize = getMap().tilesize *0.5f;
                    pos.x += tilesize;              
                    pos.y += tilesize;
                    CBlob@ blob = map.getBlobAtPosition( pos );          
                    if (blob is null)
                    {  
                        SpawnUpgrade( pos, 1 + Random( Upgrade::upgrade_count-1 ) );
                    }
                }
            }
            this.set_u32( "last upgrades time", time );
        }
    

    Bullets do what you think they would do with a significant life, bombs blow up after a short amount of time

    Also you're a jeep


    Just a generic top down kill eachother-anator to show the capabilities of the KAG engine and how much can be done, even if it looks nothing like KAG. I'm guessing the devs were working on it or had someone work on it instead of making mods downloadable via server join ;) Also sorry for an actual post and not a joke, here's one: there were these two muffins sittin in an oven. one muffin goes to the other "holy shit it's hot in here!" the other muffin goes "holy shit a talkin muffin!"
     
    Atheon, Beef and FuzzyBlueBaron like this.
  20. kedram

    kedram Drill Rusher Tester

    Messages:
    449
    that sounds pretty cool. and yes i played jackal bone xD. thats the first thing it reminded me of