ShyGuy Graphics
   Game Maker Graphics at there best


 

NAVIGATION
Home
TileSets
Games
Sprite Page 1
Sprite Page 2
Monster Sprites
Title Screens






    
February 6, 2005 News
Everything is almost up and running I got almost all the graphics in, I just need to add lot more tilesets and games. Also the title screen requests are in i have finished golden eye advanced,  Defending Castle Ignorfot, and  Tested to Comply. Another thing is i'll be posting a Weakly code at the bottom of the home page and if you are having trouble with your game you just might be in luck.


Weakly Game Maker Code
RPG Movement
First you must make 4 sprites facing Left, Right, Up, Down and call them this "sprPlayerRight" "sprPlayerLeft" "sprPlayerDown" sprPlayerUp" then create a character object.
First create a "Create" event.
and then open a code file and put this
image_speed = 0.4
Then make a Step event and add this code
if (keyboard_check(vk_down)) == true { sprite_index = sprPlayerDown  direction = 270  speed = 4 }
if (keyboard_check(vk_up)) == true { sprite_index = sprPlayerUp  direction = 90  speed = 4 }
if (keyboard_check(vk_left)) == true { sprite_index = sprPlayerLeft  direction = 180  speed = 4 }
if (keyboard_check(vk_right)) == true { sprite_index = sprPlayerRight  direction = 360  speed = 4 }
if (keyboard_check(vk_nokey)) == true { image_index = 0  speed = 0}



 


© ShyGuy Graphics


Create a free website at Webs.com