This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2008-08-15 01:30:50

jon182
Scratcher
Registered: 2008-08-08
Posts: 55

Need Help Plzzzzzz

ok, i'm making a really cool project but i have a problem. i have it set so that it says this.

[blocks]<when green flag clicked><wait until><( <{ level }> <=> 2 )> <say[ blank ]for(9  )secs> <stop script>[/blocks]

(my blank is really words.) yet at level 1 it says the wordsand at levels 2 i get nothing what can i do?

Offline

 

#2 2008-08-15 01:37:04

Bluestribute
Scratcher
Registered: 2008-01-24
Posts: 1000+

Re: Need Help Plzzzzzz

<when green flag clicked>
<forever>
<if><( level  <=> 2  )>
bla bla bla
<end>
<end>


http://img247.imageshack.us/img247/1204/bluestributett4.jpg
That's my PSN ID. I know tons of COD4 glitches. Add me as your friend. Oh, and get a headset

Offline

 

#3 2008-08-15 01:56:12

deatheater
Scratcher
Registered: 2008-04-11
Posts: 1000+

Re: Need Help Plzzzzzz

I see whats wrong I think, try making the level starter 1 level shorter, or

change the <wait until><( <{ level }> <=> 2 )> 

to  <wait until><( <{ level }> <=> 3 )>

Last edited by deatheater (2008-08-15 01:56:50)

Offline

 

#4 2008-08-15 02:06:42

deatheater
Scratcher
Registered: 2008-04-11
Posts: 1000+

Re: Need Help Plzzzzzz

or if that doesn't work, put this <set{ level }to( 1

after the <when green flag clicked> so it should look like this

<when green flag clicked>
<set{ level }to( 1
<wait until><( <{ level }> <=> 2 )>
<say[ blank ]for( 9 )secs>
<stop script>

Offline

 

#5 2008-08-15 19:02:00

terminator355
Scratcher
Registered: 2008-07-31
Posts: 100+

Re: Need Help Plzzzzzz

atually the problem is that if you have your level up set to [blocks]<when green flag clicked>
<forever>
<if>what ev
<change{ _____ }by( 1 )
<end>
<end>
it doesnt allways only change it by one. make it this:
<when green flag clicked>
<forever>
<if>what ev
<set{ level }to( (( <{ level }> <+> 1 ))
<end>
<end>
this is more acurate and works every time.
[/blocks]


No new stuff for now guys  wink  join me for some Black Ops on xbox: termhn or for some rock band on PS3: rocket232

Offline

 

#6 2008-08-16 18:37:32

deatheater
Scratcher
Registered: 2008-04-11
Posts: 1000+

Re: Need Help Plzzzzzz

terminator355 wrote:

atually the problem is that if you have your level up set to [blocks]<when green flag clicked>
<forever>
<if>what ev
<change{ _____ }by( 1 )
<end>
<end>
it doesnt allways only change it by one. make it this:
<when green flag clicked>
<forever>
<if>what ev
<set{ level }to( (( <{ level }> <+> 1 ))
<end>
<end>
this is more acurate and works every time.
[/blocks]

ah it's not more accurate if thats the problem u need a wait sign inbetween like this


<when green flag clicked>
<forever>
<if>what ev
<set{ level }to( (( <{ level }> <+> 1 ))
<wait( 0.5 )secsc>
<end>
<end>

that gives ur level change enough time to change  smile

Offline

 

Board footer