RiX Update Topic! (Download Link!)

Game Editor comments and discussion.

RiX Update Topic! (Download Link!)

Postby Hblade » Wed Nov 09, 2011 7:35 am

Download: http://dl.dropbox.com/u/40442054/Hidden ... 29/RiX.zip

Hey everyone! RiX had a giant makeover XD Take a look:
scrn1.png

SCRN.png

scrn3.png

SCRN2.png



EDIT:
This will be version 1, I might make version 2 an MDI, meaning you can have multiple windows! :D This has been the hardest thing I ever tried to program. There is virtually no-help almost on google searching lol :/ Its complicated but when you get it its awesome :D
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic!

Postby master0500 » Wed Nov 09, 2011 8:22 am

... :shock:
can it do tabed browsing?
looks epic
master0500
 
Posts: 409
Joined: Sun Jun 26, 2011 9:42 pm
Score: 27 Give a positive score

Re: RiX Update Topic!

Postby Hblade » Wed Nov 09, 2011 1:52 pm

Nah it cant =P Sorry lol I'm not that skilled yet, and thanks :D! It'll be released later today probably as version 1.0
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic!

Postby lcl » Wed Nov 09, 2011 2:32 pm

Wow, I want to get to try it!! :D
Very interesting! :)
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: RiX Update Topic!

Postby Hblade » Wed Nov 09, 2011 3:25 pm

Thanks LCL :D

LCL :D I saw you thar on that chat :3
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!)

Postby lcl » Wed Nov 09, 2011 4:24 pm

:D
Haha, I'm now back to the chat.
And I'm posting this thrugh RiX. :D
Great work!
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: RiX Update Topic! (Download Link!)

Postby Hblade » Wed Nov 09, 2011 4:39 pm

lol thx :3
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby kengin » Thu Nov 10, 2011 3:16 pm

w0w cool XD
User avatar
kengin
 
Posts: 11
Joined: Thu Nov 10, 2011 4:12 am
Score: 1 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Hblade » Thu Nov 10, 2011 3:19 pm

thanks :D
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby MrJolteon » Fri Nov 11, 2011 8:42 am

Request:
Add the isometric building creator I posted a while back to the Game Tools tab
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Hblade » Fri Nov 11, 2011 12:20 pm

Good idea.
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Hblade » Fri Nov 11, 2011 7:43 pm

Beta Screenshot:
RiX BETA.png
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Jagmaster » Fri Nov 11, 2011 8:49 pm

I'm gonna take a wild guess and say this was done with VisualBasic. Hm, then again, perhaps not. Idk :P
User avatar
Jagmaster
 
Posts: 875
Joined: Sun May 08, 2011 4:14 pm
Location: Not where you think.
Score: 82 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Hblade » Fri Nov 11, 2011 9:00 pm

Visual C++, the Most annoying piece of crap help serviced software ever created by complete idiots with coding skills.

Microsoft messed the crap up man, they have a bunch of built in functions but dont tell you a BIT on how to use them! Right now Im trying to make the effen' window dragable! heres what I got so far that FAILS MISURABLY. . . .
Code: Select all
private: System::Void panel8_MouseDown(System::Object^  sender, System::Windows::Forms::MouseEventArgs^  e) {
          ISCLICKED=1;
          LastClick=e->Location;
       }
private: System::Void panel8_MouseMove(System::Object^  sender, System::Windows::Forms::MouseEventArgs^  e) {
          if (ISCLICKED) {
             Location = Point(LastClick.X, LastClick.Y);
          }
       }
private: System::Void panel8_MouseUp(System::Object^  sender, System::Windows::Forms::MouseEventArgs^  e) {
          ISCLICKED=0;
       }
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: RiX Update Topic! (Download Link!) -- BetaTesters

Postby Jagmaster » Fri Nov 11, 2011 9:22 pm

Haha, I don't know anything about Visual Basic or Visual C++. :lol:
One thing that's helpful about this site, is you can search nearly any function and keyword used by GE, and it'll give you a definition.

I actually had half a mind to learn either one of those, but if it's crap, then maybe I won't. :P
Neat browser though. ^^
I wonder if there was a way to make you able to view GE games in this browser.
User avatar
Jagmaster
 
Posts: 875
Joined: Sun May 08, 2011 4:14 pm
Location: Not where you think.
Score: 82 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest