Class of 2016 Forum

Would you like to react to this message? Create an account in a few clicks or log in to continue.
Class of 2016 Forum

This is the new wiki/forum, which replaced the old one. But you already know that.


+5
P-Dawg98
YLG Pianonerd
aznfreak4827
>-(__.)<(Whale!)
tuxlord123
9 posters

    Eli's Game Devolpment Blog

    Poll

    What Game should I *create* (and I use that term loosely) next?

    [ 2 ]
    Eli's Game Devolpment Blog - Page 5 Bar_left29%Eli's Game Devolpment Blog - Page 5 Bar_right [29%] 
    [ 3 ]
    Eli's Game Devolpment Blog - Page 5 Bar_left43%Eli's Game Devolpment Blog - Page 5 Bar_right [43%] 
    [ 1 ]
    Eli's Game Devolpment Blog - Page 5 Bar_left14%Eli's Game Devolpment Blog - Page 5 Bar_right [14%] 
    [ 1 ]
    Eli's Game Devolpment Blog - Page 5 Bar_left14%Eli's Game Devolpment Blog - Page 5 Bar_right [14%] 

    Total Votes: 7
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Wed Jul 06, 2011 7:01 pm

    ZoruaTheAether wrote:. _____________________ .
    ummmm yes?
    ZoruaTheAether
    ZoruaTheAether
    $$ Thousandaire $$


    Posts : 1390
    Points : 5484
    Reputation : 22
    Join date : 2011-06-15
    Age : 25
    Location : B3H1ND YOU H4H4H4H4H444

    Cool Re: Eli's Game Devolpment Blog

    Post by ZoruaTheAether Wed Jul 06, 2011 7:10 pm

    tuxlord123 wrote:
    ZoruaTheAether wrote:. _____________________ .
    ummmm yes?
    Trying to decifer(?) Sara's Japanese/German rant thing
    ----
    OM*G.. WERE NOT DOING THE GAME OMG OMG OMG OGMG OG NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
    ANATA WA BAKA DESU!!!!!!!!! IIIEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
    NIEn
    NONNNNNNN
    OMG
    WARUM
    WHY???
    NAZE>>>>>>????????????????????
    YOU GET NO GAMSAHABNIDA!
    ----
    OM*G.. WERE NOT DOING THE GAME OMG OMG OMG OGMG OG NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
    YOU ARE STUPID!!!!!!!!!
    NNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
    NIEn
    NONNNNNNN
    OMG
    WARUM
    WHY???
    WHY>>>>>>????????????????????
    YOU GET NO GAMSAHABNIDA!
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Wed Jul 06, 2011 7:11 pm

    Well I gave it my all
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Sat Jul 09, 2011 4:10 pm

    I'm still making a game its just a different game. Ideas Welcome.
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Sat Jul 09, 2011 4:11 pm

    Derp derp... Right now I am creating a tileset for my map function my art sucks so much XD xD XD
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Sat Jul 09, 2011 5:22 pm

    Anyone can help please?
    Code:
    #include <allegro.h>
    #include <fstream>
    #include "Map.h"
    #include "Global Variables.h"


    Map::Map(void)
    {
       iloadx = iloady = 0;
       inumx = inumy = 0;
       Map::loadmap("Map1.txt");
    }


    Map::~Map(void)
    {
    }

    void Map::update()
    {

    }

    void Map::loadmap(const char* filename)
    {
       ifstream file (filename);
       if(file.is_open())
       {
          file >> imapsizex >> imapsizey;
          while(!file.eof())
          {
             file >> imaptiles[iloadx][iloady];
             iloadx++;
             if(iloadx >= imapsizex)
             {
                iloadx = 0;
                iloady++;
             }
          }
       }
       else
       {
       allegro_message("YOU FAIL AT LIFE!!!");
       }
    }

    void Map::drawmap(BITMAP* tileset, BITMAP* buffer)
    {
       for(inumx; inumx < imapsizex; inumx++)
       {
          for(inumy; inumy < imapsizey; inumy++)
          {
             blit(tileset,buffer,(imaptiles[inumx][inumy]%4)*TILE_WH,(imaptiles[inumx][inumy]/4)*TILE_WH,inumx*TILE_WH,inumy*TILE_WH,TILE_WH,TILE_WH);
          }
       }
    }
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Sat Jul 09, 2011 6:58 pm

    YES i just finished my map reading class! IM SO EXCITED :D
    ZoruaTheAether
    ZoruaTheAether
    $$ Thousandaire $$


    Posts : 1390
    Points : 5484
    Reputation : 22
    Join date : 2011-06-15
    Age : 25
    Location : B3H1ND YOU H4H4H4H4H444

    Cool Re: Eli's Game Devolpment Blog

    Post by ZoruaTheAether Sat Jul 09, 2011 11:37 pm

    tuxlord123 wrote:Anyone can help please?
    Code:
    #include <allegro.h>
    #include <fstream>
    #include "Map.h"
    #include "Global Variables.h"


    Map::Map(void)
    {
       iloadx = iloady = 0;
       inumx = inumy = 0;
       Map::loadmap("Map1.txt");
    }


    Map::~Map(void)
    {
    }

    void Map::update()
    {

    }

    void Map::loadmap(const char* filename)
    {
       ifstream file (filename);
       if(file.is_open())
       {
          file >> imapsizex >> imapsizey;
          while(!file.eof())
          {
             file >> imaptiles[iloadx][iloady];
             iloadx++;
             if(iloadx >= imapsizex)
             {
                iloadx = 0;
                iloady++;
             }
          }
       }
       else
       {
       allegro_message("YOU FAIL AT LIFE!!!");
       }
    }

    void Map::drawmap(BITMAP* tileset, BITMAP* buffer)
    {
       for(inumx; inumx < imapsizex; inumx++)
       {
          for(inumy; inumy < imapsizey; inumy++)
          {
             blit(tileset,buffer,(imaptiles[inumx][inumy]%4)*TILE_WH,(imaptiles[inumx][inumy]/4)*TILE_WH,inumx*TILE_WH,inumy*TILE_WH,TILE_WH,TILE_WH);
          }
       }
    }
    No?
    aznfreak4827
    aznfreak4827
    Devil's Apprentice >8D


    Posts : 727
    Points : 5335
    Reputation : -1
    Join date : 2011-06-15
    Age : 43

    Cool Re: Eli's Game Devolpment Blog

    Post by aznfreak4827 Sun Jul 10, 2011 12:23 am

    We dont understand "the spocks" language here
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Sun Jul 10, 2011 9:12 am

    Well thank you anyway I got it to work!
    aznfreak4827
    aznfreak4827
    Devil's Apprentice >8D


    Posts : 727
    Points : 5335
    Reputation : -1
    Join date : 2011-06-15
    Age : 43

    Cool Re: Eli's Game Devolpment Blog

    Post by aznfreak4827 Sun Jul 10, 2011 11:17 am

    No problem baby
    P-Dawg98
    P-Dawg98
    Person-Who-Has-No-Life


    Posts : 534
    Points : 5005
    Reputation : 0
    Join date : 2011-06-16
    Age : 26
    Location : Drinking wine, eating cheese, catching some rays

    Cool Re: Eli's Game Devolpment Blog

    Post by P-Dawg98 Mon Jul 11, 2011 1:13 pm

    In the poll I voted for shoot 'em up but it came up as "other".
    P-Dawg98
    P-Dawg98
    Person-Who-Has-No-Life


    Posts : 534
    Points : 5005
    Reputation : 0
    Join date : 2011-06-16
    Age : 26
    Location : Drinking wine, eating cheese, catching some rays

    Cool Re: Eli's Game Devolpment Blog

    Post by P-Dawg98 Mon Jul 11, 2011 1:14 pm

    Wait, never ming.
    aznfreak4827
    aznfreak4827
    Devil's Apprentice >8D


    Posts : 727
    Points : 5335
    Reputation : -1
    Join date : 2011-06-15
    Age : 43

    Cool Re: Eli's Game Devolpment Blog

    Post by aznfreak4827 Mon Jul 11, 2011 2:20 pm

    lol i voted "other'
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Mon Jul 11, 2011 2:50 pm

    when u vote for other ur supposed to leave a suggestion.
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Mon Jul 11, 2011 5:59 pm

    IN THE DISSCUSSION
    aznfreak4827
    aznfreak4827
    Devil's Apprentice >8D


    Posts : 727
    Points : 5335
    Reputation : -1
    Join date : 2011-06-15
    Age : 43

    Cool Re: Eli's Game Devolpment Blog

    Post by aznfreak4827 Tue Jul 12, 2011 3:47 pm

    really? u really mean it?
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Tue Jul 12, 2011 6:00 pm

    yes actually 3 people did
    YLG Pianonerd
    YLG Pianonerd
    $$ Thousandaire $$


    Posts : 1964
    Points : 6105
    Reputation : -4
    Join date : 2011-06-15
    Age : 35
    Location : Pianoland

    Cool Re: Eli's Game Devolpment Blog

    Post by YLG Pianonerd Wed Jul 13, 2011 6:51 pm

    aznfreak4827 wrote:I know me and patrick voted.. thats it
    I think Eli also voted...lol jk I don't know any of those games so I didn't vote...
    YLG Pianonerd
    YLG Pianonerd
    $$ Thousandaire $$


    Posts : 1964
    Points : 6105
    Reputation : -4
    Join date : 2011-06-15
    Age : 35
    Location : Pianoland

    Cool Re: Eli's Game Devolpment Blog

    Post by YLG Pianonerd Thu Jul 14, 2011 6:09 pm

    P-Dawg98 wrote:
    YLG Pianonerd wrote:
    aznfreak4827 wrote:I know me and patrick voted.. thats it
    I think Eli also voted...lol jk I don't know any of those games so I didn't vote...
    Wait, Eli made a poll on what game to make next and then voted himself? Wouldn't that mean that he would just make what he chose? Sleep

    tuxlord123 wrote:I didn't vote
    THEN, WHO VOTED!?!? haha why am I making such a big deal out of this...
    and if someone explains what those games are, i actually might vote...
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Thu Jul 21, 2011 9:37 pm

    Đặt điều này trong cuộc thảo luận!
    ZoruaTheAether
    ZoruaTheAether
    $$ Thousandaire $$


    Posts : 1390
    Points : 5484
    Reputation : 22
    Join date : 2011-06-15
    Age : 25
    Location : B3H1ND YOU H4H4H4H4H444

    Cool Re: Eli's Game Devolpment Blog

    Post by ZoruaTheAether Thu Jul 21, 2011 9:48 pm

    Googletransed?
    YLG Pianonerd
    YLG Pianonerd
    $$ Thousandaire $$


    Posts : 1964
    Points : 6105
    Reputation : -4
    Join date : 2011-06-15
    Age : 35
    Location : Pianoland

    Cool Re: Eli's Game Devolpment Blog

    Post by YLG Pianonerd Thu Jul 21, 2011 10:46 pm

    tuxlord123 wrote:Đặt điều này trong cuộc thảo luận!
    Is that Vietnamese (okay, if it isn't, don't blame me for not knowing)?
    YLG Pianonerd
    YLG Pianonerd
    $$ Thousandaire $$


    Posts : 1964
    Points : 6105
    Reputation : -4
    Join date : 2011-06-15
    Age : 35
    Location : Pianoland

    Cool Re: Eli's Game Devolpment Blog

    Post by YLG Pianonerd Thu Jul 21, 2011 10:47 pm

    ZoruaTheAether wrote:Googletransed?
    Do you mean Google translated? or something?
    tuxlord123
    tuxlord123
    Rank that Janet got first. The rest of y'all are just posers...


    Posts : 653
    Points : 5049
    Reputation : 4
    Join date : 2011-06-15
    Age : 24
    Location : PA

    Cool Re: Eli's Game Devolpment Blog

    Post by tuxlord123 Fri Jul 22, 2011 1:21 pm

    right now i am still working with my tile loading class to create multiple layers (a solid layer, a layer behind the player, and a layer in front of the player) which is proving to be quite difficult without a map editor which is a pain to make.

    Sponsored content


    Cool Re: Eli's Game Devolpment Blog

    Post by Sponsored content


      Current date/time is Fri Mar 29, 2024 1:55 am