Jump to content
A 2021 backup has been restored. Forums are closed and work in progress. Join our Discord server for more updates! ×
SoaH City Message Board

thevaleev

Members
  • Posts

    92
  • Joined

  • Last visited

  • Days Won

    2

thevaleev last won the day on March 15 2014

thevaleev had the most liked content!

About thevaleev

  • Birthday 03/10/1996

Profile Information

  • Gender
    Male
  • Location
    Russia
  • Current Project
    Sonic Game Land

Recent Profile Visitors

1,703 profile views

thevaleev's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

25

Reputation

  1. hey there, I still trying in writing, here's my new post about 2014 http://fav.me/d8bz6gb

    1. Assassin-HeatBeat

      Assassin-HeatBeat

      Da Rock, GOTY of GOFTY!

  2. Oh I remember this logo, I even tried to remake it for Game Maker.. let me.. here, if someone is still interested.
  3. Yes, I meant that it's comes from Sonicesque albums. Song is surely fits to the stage, but I heard that Sonicesque's tracks are used in Sonic Classic, so it can confuse people. Like it was with Project Eclipse.
  4. Looks pretty good and much better, I like it. But music... this is placeholder, right? Use Full Editor for your first post.
  5. Maybe Bandicam? http://www.bandicam.com/
  6. No problem man, I always glad to help. Also I glad that you fixed infinite roll glitch. I was about to give my variant for solving this problem though. Anyway, if you don't mind I will post it there. I just added another 'counter' timer variable called counted[4] and placed it into Wall Run code and Rolling Action code. This one doesn't allowing to do Wall Run for a very quick moment after falling from a wall while rolling. ... else if (keyboard_check(vk_shift) && counter[4]=0 && action == 1) //oh look there's new counter[4]=0 code ... if (counter[4]>0 && ground) counter[4] -= 1; //place it after wall jump code ... if ( action == action_rolling ) { attack = true; counter[4] = 5; //don't let counter shut off while player's rolling ... I just wanted to give more reality sense with this. I feel like it'd be confusing if Sonic can do Wall Run up while falling down at high speed.
  7. Check the last two tracks from KgZ's SoundCloud. They are awesome.

  8. Hello, Noah. I have some experience with Sonic Engine Plus, I have some ideas and I think they are will help you. Unfortunately, due to my bad English, I can't fully understand your post and especially video. It would be better if you'd tried explain it in text lol. Also I can't understand why you used a lot of local variables like 'parkour' and 'canparkour'. Instead of this, I personally tried to make Wall Run without them and just modified existing Step code. Try to find code after '// full stop when we're colliding a wall' and replace your code with my below. Hope this will works. // full stop when we're colliding a wall if (x_speed > 0 && player_collision_right(x,y,angle,maskBig)) { if (ground) x_speed = 0 else if (keyboard_check(vk_shift) && y_speed<-1 && action == 1) {x_speed=max(4,x_speed) action=0 ground=true angle=90 relative_angle=90 animation_direction=1} else x_speed = 0; } if (x_speed < 0 && player_collision_left(x,y,angle,maskBig)) { if (ground) x_speed = 0 else if (keyboard_check(vk_shift) && y_speed<-1 && action == 1) {x_speed=min(-4,x_speed) action=0 ground=true angle=-90 relative_angle=-90 animation_direction=-1} else x_speed = 0; }
  9. No. If I am not wrong, this engine has been made absolutely from the scratch.
  10. The Sonic Show celebrating 8th Years Anniversary with such a nice Sonic parody!

  11. Oh good! This is gonna be so interesting. I know Solvo as good musician and I'm sure she will be a great moderator. Congratulations!
  12. Busy with other stuff so much that I almost have no time to visit this place..

    1. OverbounD

      OverbounD

      I hear you man me too.

    2. Rawr

      Rawr

      I've been caught up with a lot of personal stuff myself right now. I still visit when I can!

  13. Topic on SSMB || Topic on SFGHQ/United /// DOWNLOAD /// /// LISTEN THE SOUNDTRACK /// /// LIST OF PLAYTHROUGHS /// Credits: Damizean, Chaos Rush, NeKit, Wolfxbane101, Goncalo Lopes, DanielMania123, HoMax, Overbound, Nefault1st, Jeremy Smith, Marvin Valentin, Jake Kim, Toni Leys, Fasseh. I am proudly introducing a Sonic fan game titled Sonic Game Land. This fan game powered by Sonic Revival Engine and made on Game Maker 8.0 is featuring six playable characters, five game modes and four different stages along with gameplay inspired by Sonic Riders, Sonic Rivals and Sonic R. Yes, this is racing platformer with laps feature. Storyline is inspired from Sonic Colors. I really enjoyed this game while watching footages on YouTube and actually playing it via Dolphin emulator. Here is briefing of storyboard: “Have you ever wondered what role the “Game Land” planetoid in Sonic Colors plays? Why it has form like Sonic’s face? Where the Sonic Simulator are really from? Maybe Dr. Eggman has created the planetoid as a plan “B”? You’ll find all the answers in a new story, coming soon, about many, many hedgehogs!” So on, I'm want to tell more about Game Land and Robo-Hedgehogs. Story started after events of Sonic Colors, where planet Game Land (Sonic Simulator) came back to the orbit of Mobius. Gotta say this is still WIP, and actually all game elements are WIP. http://www.youtube.com/watch?v=bAJXuUz27P0 SGL has been announced to Sonic Amateur Games Expo and, at that point, showed itself as unbelievably buggy game. Seriously, I looked into old videos from SAGE and facepalmed yourself for a many times. Fortunately, game already has received followers and reviews that allowed me to improve it in many ways. I felt like that my idea with racing concept is really working. I have returned to SAGE in 2014 and won a bit more attention. I was very glad about it. In addition, SGL became as entry ticket to Sonic community. I really appreciate all what I got during the development of the game – art, friends and especially music. And I am don’t mind to get more help. If you have advices or suggestions – leave them below. If you found bugs – report them here. If you want to help with sprites, codes or music – let me know. Not sure that I can thank you materially, but I hope we can get a really good product in final. Enjoy!
  14. i love the theme song of starlight pursuit

×
×
  • Create New...