How can i adjust the resolution of the screen where the sprites are shown?(I don't mean the full screen option).And something else is there any greek forum, like this, for the scratch?
Offline
Ok, thanks, but i have one more question.How can i made some buttons function only after some others had been already used?
Offline
Hi again, Dark_Fighter,
if you want to make a sprite react to some buttons or keys only after something else has already happened, using variables is probably your best shot. That way you can make your sprite "remember" things which have happened at some previous time.
An example:
Let's say you want your sprite to do something when the user presses the space key, but only if the "second level" of your game has been reached, and that in order to reach the second level, your sprite has to touch another sprite first.
You could then code something like this:
[blocks]
<when green flag clicked>
<set{ level }to( 1
<wait until> <touching[ other sprite
<set{ level }to( 2
<when[ space ]key pressed>
<if> <( <{ level }> <=> 2 )>
<say[ Hi! ]for( 2 )secs>
<end>
[/blocks]
Does this help you?
Offline
A lot, thx. If ihave any other questions i'll be back.
Offline