Charas-Project

  • Home
  • Help
  • Search
  • Calendar
  • Login
  • Register
*
Please login or register.

Login with username, password and session length
 

News:

Click here to join us on IRC (#charas on irc.freenode.net)!



  • Charas-Project »
  • Community Projects »
  • Chain Games »
  • Charas Chain Game 4 Official Thread (Complete)
« previous next »
  • Print
Pages: 1 ... 5 6 7 8 9 [10] 11 12 13 14 15 ... 23

Author Topic: Charas Chain Game 4 Official Thread (Complete)  (Read 226698 times)

Offline Prpl_Mage

  • Administrator
  • Sage
  • *
  • Posts: 7,645
  • The Administrator Mage
    • Check out our itch website
Re: Charas Chain Game 4 Official Thread
« Reply #135 on: August 04, 2015, 10:56:38 PM »
Man, the fact that I get that code scares me.
Logged
Cool RPGM Project!
Sprite till you die

Oh my god, this was ...10 years ago...

Offline DragonBlaze

  • A Wild DB Appeared!
  • Royal
  • *
  • Posts: 3,329
Re: Charas Chain Game 4 Official Thread
« Reply #136 on: August 10, 2015, 08:23:01 AM »
Has anyone tried editing an rm2k3 game with the Stream version of rm2k3 and then go back to the old translated version?

I was running into performance issues when I was using 1.08, but opening up a copy of the game in the steam version and converting the project magically fixed everything. It seems like I can open the game in my old 1.08 with no issues, but I don't want corrupt the game for anyone else.
Logged
Hell Yeah! Just recovered all my old rm2k/3 games from my 10 year old, broken laptop hard drive that had been formatted and had a new OS installed on it. Oh, and I did all of this from my phone. WIN

Offline Fisherson

  • Jedi Sentinel of the Charasian Cluster.
  • Royal
  • *
  • Posts: 4,200
  • Just call me Fish.
Re: Charas Chain Game 4 Official Thread
« Reply #137 on: August 11, 2015, 10:30:47 PM »
Quote from: DragonBlaze on August 10, 2015, 08:23:01 AM
Has anyone tried editing an rm2k3 game with the Stream version of rm2k3 and then go back to the old translated version?

I was running into performance issues when I was using 1.08, but opening up a copy of the game in the steam version and converting the project magically fixed everything. It seems like I can open the game in my old 1.08 with no issues, but I don't want corrupt the game for anyone else.

I worried about that when we began since some of us can afford the new maker and had already installed it before we got our chapters and that'd make it impossible to play on RPG Maker Tsukuru (Pirated 2003's new name). I can't test it since my pirated copy died and I couldn't find one so I finally gave up and managed to DL the new one....any volunteers to test this scientific theory? I'll give any volunteer a cookie~?
Logged

Offline DragonBlaze

  • A Wild DB Appeared!
  • Royal
  • *
  • Posts: 3,329
Re: Charas Chain Game 4 Official Thread
« Reply #138 on: August 12, 2015, 08:00:51 AM »
Good news and bad news.. The good news is I finished all of the code for my custom system, created the levels, created all of the graphics, and things seemed to be running well. The bad news is that I learned that each time you call an event in rm2k3, it takes 0.0165 seconds, which means the entire thing lags like hell. To fix the lag, I need to do two things.
1. Once a picture is drawn, make sure to move it instead of trying to redraw it, which should lead to smoother animations.
2. Be much smarter about making check to see if an event should be called before calling it. So for example, when there is a common event to check for a collision, check to see if there is an entity that is eligible for a collision before calling the event instead of checking to see if the entity is eligible for a collision within the called event. 

I feel bad for taking too long, but hopefully my chapter will be worth it once it's complete. Plus my system will be easily reusable if anyone else wants to make new scenes.
Logged
Hell Yeah! Just recovered all my old rm2k/3 games from my 10 year old, broken laptop hard drive that had been formatted and had a new OS installed on it. Oh, and I did all of this from my phone. WIN

Offline Prpl_Mage

  • Administrator
  • Sage
  • *
  • Posts: 7,645
  • The Administrator Mage
    • Check out our itch website
Re: Charas Chain Game 4 Official Thread
« Reply #139 on: August 12, 2015, 05:33:12 PM »
Sounds awesome
Logged
Cool RPGM Project!
Sprite till you die

Oh my god, this was ...10 years ago...

Offline Moosetroop11

  • Sage
  • *
  • Posts: 7,398
Re: Charas Chain Game 4 Official Thread
« Reply #140 on: August 13, 2015, 12:49:04 AM »
I remember someone (meiscool?) going on about putting 0.0 waits in code which reduced lag somehow.
Logged
Maaaaaaaaaaaaaaaaaaaaaaaaaaan I missed this place.

Quote from: drenrin2120
Maaaaaaaaaaaaaaaaaaan I missed you.

Quote from: fruckert
Maaaaaaaaaaaaaaan I missed that welcome.

Offline DragonBlaze

  • A Wild DB Appeared!
  • Royal
  • *
  • Posts: 3,329
Re: Charas Chain Game 4 Official Thread
« Reply #141 on: August 13, 2015, 02:09:55 AM »
Yeah, wait 0.0 actually waits 0.0165 seconds, giving time for rm2k3 to execute the commands before it tries to execute them again in a loop or parallel process event. I only have one label loop powering everything, but so many commands are being executed in that loop that I need five or six wait 0.0 commands to make everything run smoothly, which gives me roughly 10 frames a second. I was doing a lot of my animation by redrawing pictures around 30 times a second, which gave a smooth looking animation, but 10 frames will be too choppy. Moving pictures instead of drawing them should at least make the animations look smoother. As for the rest of the system, there's certain common events that I call ~200 times in a row, and I can probably be a little more efficient on how I handle that.
Logged
Hell Yeah! Just recovered all my old rm2k/3 games from my 10 year old, broken laptop hard drive that had been formatted and had a new OS installed on it. Oh, and I did all of this from my phone. WIN

Offline Prpl_Mage

  • Administrator
  • Sage
  • *
  • Posts: 7,645
  • The Administrator Mage
    • Check out our itch website
Re: Charas Chain Game 4 Official Thread
« Reply #142 on: August 21, 2015, 03:46:59 PM »
So, how is progress?
Logged
Cool RPGM Project!
Sprite till you die

Oh my god, this was ...10 years ago...

Offline DragonBlaze

  • A Wild DB Appeared!
  • Royal
  • *
  • Posts: 3,329
Re: Charas Chain Game 4 Official Thread
« Reply #143 on: August 21, 2015, 05:17:09 PM »
Fixed all of the issues I mentioned earlier, and everything is running smoothly other than a few bugs that don't really have a big impact, so I'm not fixing them. My weekend is completely open, so I'm planning on wrapping it up by Sunday night.

Who's next, Momeka? Are you ready to start soon? Who should I send the download link to?
« Last Edit: August 21, 2015, 05:18:47 PM by DragonBlaze »
Logged
Hell Yeah! Just recovered all my old rm2k/3 games from my 10 year old, broken laptop hard drive that had been formatted and had a new OS installed on it. Oh, and I did all of this from my phone. WIN

Offline Fisherson

  • Jedi Sentinel of the Charasian Cluster.
  • Royal
  • *
  • Posts: 4,200
  • Just call me Fish.
Re: Charas Chain Game 4 Official Thread
« Reply #144 on: August 23, 2015, 01:17:00 AM »
I think you send it to Purps then he sends me a copy which I can't retrieve and peek at till I get to Wi-Fi. >-> But then again I'm a tiny bit out of the loop right now.
Logged

Offline Prpl_Mage

  • Administrator
  • Sage
  • *
  • Posts: 7,645
  • The Administrator Mage
    • Check out our itch website
Re: Charas Chain Game 4 Official Thread
« Reply #145 on: August 23, 2015, 09:40:16 AM »
I suppose it's either Momeka or AFL. Depends on who has time now.
Logged
Cool RPGM Project!
Sprite till you die

Oh my god, this was ...10 years ago...

Offline Momeka

  • Agent
  • *
  • Posts: 952
    • GoblinGrotto.com
Re: Charas Chain Game 4 Official Thread
« Reply #146 on: August 23, 2015, 09:41:20 AM »
Yeah, I can do it. So you can send it to me.
Logged
[GB Devlog]    [Game Dump]

Offline DragonBlaze

  • A Wild DB Appeared!
  • Royal
  • *
  • Posts: 3,329
Re: Charas Chain Game 4 Official Thread
« Reply #147 on: August 24, 2015, 04:51:42 AM »
Didn't finish :( Wrapping up the dungeon I was working on took longer than I thought. I finished that part, but I still need to tie all of the parts of my chapter together. It should be done very soon though.
Logged
Hell Yeah! Just recovered all my old rm2k/3 games from my 10 year old, broken laptop hard drive that had been formatted and had a new OS installed on it. Oh, and I did all of this from my phone. WIN

Offline A Forgotten Legend

  • Your neighborhood box of colors
  • Royal
  • *
  • Posts: 4,428
    • Website
Re: Charas Chain Game 4 Official Thread
« Reply #148 on: August 24, 2015, 09:03:03 PM »
I had my first day of school as a teacher today, so I'm a little overbooked at the moment. Thank you for taking it Momeka.
Logged

Offline Dr. Ace

  • Herr Doktor
  • Associate
  • *
  • Posts: 258
    • Rebirth Studios
Re: Charas Chain Game 4 Official Thread
« Reply #149 on: August 25, 2015, 12:41:34 PM »
Hey DragonBreath, hurry up! Fred and I want to make the most wicked chapter of them all! (Due to busy schedules we're dividing the workload together).

Also I know your feels AFL, next week all my classes are starting as well and I'm swamped with learning three new classes to teach.
Logged

  • Print
Pages: 1 ... 5 6 7 8 9 [10] 11 12 13 14 15 ... 23
« previous next »
  • Charas-Project »
  • Community Projects »
  • Chain Games »
  • Charas Chain Game 4 Official Thread (Complete)
 

  • SMF 2.0.10 | SMF © 2015, Simple Machines
  • XHTML
  • 2O11
  • RSS
  • WAP2
  • Simple Machines Forum