Tourement of champions created by Covent
Category: Adventure
Current rating
Added: 23 July 2010
Created by: Covent
Version: 5
(Incomplete)
Game description: use -arrow keys- to move and - mouse- to cast a spell An rpg where you lvl up, and figths hordes of monsters.
Reviews
-
Overall Score
-
Graphics
-
Sound
-
Gameplay
-
Story
-
Interface
This Game Has No Reviews.
More Games By This Creator
This creator has no other games uploaded.






Covent said about 1 year ago
ok, thanks
SuperRacoon said about 1 year ago
It's probably not the most efficient code ever, but will make it so the guy jumps higher if the key is held down longer. Of course, you'll want to adjust the variables to get just the right height.
Also, there's a glaring grammar error in the intro. 'growed' should be 'grew'. Other than that, it looks fine. I'll rate it when it's more complete.
SuperRacoon said about 1 year ago
So far it looks like everything works.
One thing you should do is make it so the character has variable jumping heights. Here's some code that will work for that too (I checked).
In the step event.
if (keyboard_check_pressed(vk_up) and place_free(x,y+1) = false)
{gravity = 0.3; gravity_direction = 270; vspeed = -9;}
if (keyboard_check(vk_up) and vspeed < 0)
{y -= 3;}
if (vspeed > 12)
{vspeed = 12;}
if (place_free(x,y+1) = true)
{gravity = 0.3; gravity_direction = 270;}
Covent said about 1 year ago
added a story.