Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

rairai5650

Members
  • Posts

    539
  • Joined

  • Last visited

    Never

Everything posted by rairai5650

  1. Why does benjo always win at lottery… *kinda piss me* xD
  2. > Won lottery 4 times in a row, (i think 4? lol) Eclipse gods are in my favour!! that's not related to the topic -_- btw i'm gonna win soon lol :3
  3. rairai5650

    Simple question

    The Consume Data… pretty much i'm sure
  4. i bilieve that there are some rpg maker resources when you download the eclipse 2.3
  5. It's Marsh Fault then… btw isn't about the new hosting?. Just Saying a Ridiculous answer lol
  6. Kinda Reminds me of minecraft ^.^ GoodLuck… btw what programming language is that?
  7. Hey guys i make a game written in java called Dark Invader so now i need a member to help me out Note >! Not gonna pay :P even i want to i can't i don't have money Positions: >! Pixel Artist - Pixeling the tileset and sprites >! >! Level Designer - Designing the level on notepad :P you can use tiled map editor i can't code like that :3 i'm not a pro coder >! >! Composer - Composing the background music >! >! SFX Maker - Making Sound effects :3 ScreenShots >! ![](http://eclipseorigins.com/community/filehost/fdd1113a829581b1dfcf5c178fe2832e.png) What it contains >! Player :3 >! Enemies :3 >! Map >! Boss >! HP >! Life >! Attack(Ofcourse how will the player defeat the enimies :3) PM me if you are interested
  8. not working either, i just fix it but the next problem is the intro only showing white i try abhi said but still not working
  9. Help guys so i made this code for intro my name before main menu nothing is error and imported what i need but the problem is, it is not working ``` public class IntroState extends GameState { private BufferedImage logo; private int alpha; private int ticks; private final int FADE_IN = 60; private final int LENGTH = 60; private final int FADE_OUT = 60; public IntroState(GameStateManager gsm) { super(gsm); } public void init() { ticks = 0; try { logo = ImageIO.read(getClass().getResourceAsStream("/Logo/logo.gif")); } catch(Exception e) { e.printStackTrace(); } } public void update() { handleInput(); ticks++; if(ticks < FADE_IN) { alpha = (int) (255 - 255 * (1.0 * ticks / FADE_IN)); if(alpha < 0) alpha = 0; } if(ticks > FADE_IN + LENGTH) { alpha = (int) (255 * (1.0 * ticks - FADE_IN - LENGTH) / FADE_OUT); if(alpha > 255) alpha = 255; } if(ticks > FADE_IN + LENGTH + FADE_OUT) { gsm.setState(GameStateManager.MENUSTATE); } } public void draw(Graphics2D g) { g.setColor(Color.WHITE); g.fillRect(0, 0, GamePanel.WIDTH, GamePanel.HEIGHT2); g.drawImage(logo, 0, 0, GamePanel.WIDTH, GamePanel.HEIGHT2, null); g.setColor(new Color(0, 0, 0, alpha)); g.fillRect(0, 0, GamePanel.WIDTH, GamePanel.HEIGHT2); } public void handleInput() { if(Keys.isPressed(Keys.ENTER)) { gsm.setState(GameStateManager.MENUSTATE); } } } ```
  10. I need a logo :) Title: War of Warriors Background: Sword You choose for other information you think what's fit on it :D
  11. Not sure about this why don't you change ``` ' next class NewCharClass = NewCharClass + 1 If NewCharClass > 3 Then NewCharClass = 1 End If ``` to ``` ' next class NewCharClass = NewCharClass = 1 If NewCharClass > 3 Then NewCharClass = 1 End If ```
  12. Title: Legend of Brew Background: something like this ![](http://img2.wikia.nocookie.net/__cb20090113000858/souleater/images/e/e8/BREW.png) Title Color: Golden or blue size: you chooze Thx
  13. Hello Guys i gonna make this quick, i wanna study java programming do you have any link of java tutorial?
  14. At the last red of the bottom
  15. ohh ok, pls someone say it cuz i really need it
  16. Does anyone know what font is this cuz I need it [http://www.eclipseorigins.com/community/index.php?/topic/133212-wip-guardians-online-back-to-live/](http://www.eclipseorigins.com/community/index.php?/topic/133212-wip-guardians-online-back-to-live/) I'm using iPod now so I can't paste the logo
  17. I'm just requesting a new logo for my game (again) Background: Crystal Background color: blue Size you choose something like on the Elsword. I don't need it to be exactly, just right or good enough Thx ~ryan
  18. Yep cut of a sword, something like damage at the shield…. i want it in side not in behind of the title
  19. so i need a logo for my game here are some information Name: Murians Land Color: Light Brown Background: Shield w/ scratch of a sword Size: You choose something like this [https://www.google.com.ph/search?q=clash+of+clans+logo&source=lnms&tbm=isch&sa=X&ei=XChGU9ffHPCuiQep0oDgBw&sqi=2&ved=0CAYQ_AUoAQ&biw=910&bih=428#facrc=_&imgdii=_&imgrc=QOrDb95RjeLRNM%253A%3BPNFdl-_3FX-azM%3Bhttp%253A%252F%252Fa.becauseweplaying.com%252Fwp-content%252Fuploads%252F2013%252F11%252FCoC_logo_2013.png%3Bhttp%253A%252F%252Fbecauseweplaying.com%252Fwallpapers%252Fclash-clans-wallpapers%252F%3B2027%3B931](https://www.google.com.ph/search?q=clash+of+clans+logo&source=lnms&tbm=isch&sa=X&ei=XChGU9ffHPCuiQep0oDgBw&sqi=2&ved=0CAYQ_AUoAQ&biw=910&bih=428#facrc=_&imgdii=_&imgrc=QOrDb95RjeLRNM%253A%3BPNFdl-_3FX-azM%3Bhttp%253A%252F%252Fa.becauseweplaying.com%252Fwp-content%252Fuploads%252F2013%252F11%252FCoC_logo_2013.png%3Bhttp%253A%252F%252Fbecauseweplaying.com%252Fwallpapers%252Fclash-clans-wallpapers%252F%3B2027%3B931) You're gonna be in our credit :) ~Ryan
  20. rairai5650

    Food Game

    ginebra sanmiguel?
×
×
  • Create New...