Quote:
Originally Posted by Komun™
Kaufe ein script wenn man es einfügt das der char hüpft/laufen.. kann
zahle 4 e*gold
|
The player obj_player, should be something like this in the step event:
Quote:
if y>y_min && keyboard_check_direct(vk_up)
{
y-=2;
with obj_solid
{
y-=2;
}
}
if y<y_max && keyboard_check_direct(vk_down)
{
y+=2;
with obj_solid
{
y+=2;
}
}
|