Pecola1 wrote:
ssss wrote:
Pecola1 wrote:
LOL. XD You wouldn't, don't do a dirty trick like that, besides she won't believe you. If it didn't end what do you think she would do?![]()
I would say on monday (3 days away)
Hey, wanna go out? The worlds already ended, yet we continue living on another plain on existence. '
She aint that smart, and i'm a geek. she'd believe me...Don't talk about your girlfriend being her back like that. XD
1) I don't have a girlfriend
2) I didn't insult her
3) If i do insult her, it's when she has made a [inappropriate for scratch] remark
4) I like her
5)
Offline
scimonster wrote:
Pecola1 wrote:
scimonster wrote:
Oh.
I kept hdarken's until S4 made me the current one.
![]()
The current one was made with Paint,
That lightnin bolt is from paint for sure.
(no not you lightnin)
Ask SSSS.
Aheeem.
Offline
Pecola1 wrote:
scimonster wrote:
Pecola1 wrote:
The current one was made with Paint,That lightnin bolt is from paint for sure.
(no not you lightnin)
Ask SSSS.
Aheeem.
...
I use paint, So what?
Also when will Rocket Alpha 0.3 be out?
Offline
ssss wrote:
Pecola1 wrote:
scimonster wrote:
Ask SSSS.
Aheeem.
...
I use paint, So what?
Also when will Rocket Alpha 0.3 be out?
After the world ends... not right after, i'll grab a quick bite of food from heaven before finishing. XD Not sure when it'll be out.
Offline
May I make the RKT release thread??
Offline
gbear605 wrote:
May I make the RKT release thread??
Not yet, these aren't official, we don't really want people to download them.
Offline
Pecola1 wrote:
gbear605 wrote:
May I make the RKT release thread??
Not yet, these aren't official, we don't really want people to download them.
kk, but when it is done, can I??
AND PLEASE RELEASE V 0.2 SOON
Offline
gbear605 wrote:
Pecola1 wrote:
gbear605 wrote:
May I make the RKT release thread??
Not yet, these aren't official, we don't really want people to download them.
kk, but when it is done, can I??
AND PLEASE RELEASE V 0.2 SOON![]()
I think its 0.3, right? or should it be 0.1.2? BTW, whoever removed the wait () secs block, I can put it back right? I think it was by accident, I put it under wait until. k?
Offline
gbear605 wrote:
Pecola1 wrote:
LS97 wrote:
Yes, the famous size hack...![]()
Yes, BYOB it was fixed, I think i'll fix it in RKT not so people cant hack, but so that we can have a better mod. It is going to be open source, and you don't have to ask for a pass.
I think we should leave the password protect thing, but have the password publicly available, so that way people have to LOOK to find it.
No, we should make the time thing, that would work, I know how to sense if the computer is mac or windows. I'll make it a block.
Offline
Pecola1 wrote:
gbear605 wrote:
Pecola1 wrote:
Yes, BYOB it was fixed, I think i'll fix it in RKT not so people cant hack, but so that we can have a better mod. It is going to be open source, and you don't have to ask for a pass.I think we should leave the password protect thing, but have the password publicly available, so that way people have to LOOK to find it.
No, we should make the time thing, that would work, I know how to sense if the computer is mac or windows. I'll make it a block.
This is completely different, I mean, instead of having the developer menu directly open, I think people should have to type in a password, but the password is on the topic post or easy to find.
Offline
You know how I made that thing so it would have connectors if you put #~ rather than #- in blockspec between blocks. I made that again. (this time more orderly) But I wanted to put it in motion/motors too. So I was wondering if anyone could help me combine:
viewerPageForMotion
| t1 t2 t3 t4 t5 t6 t7 t8 |
t1 _ ScratchBlockPaletteMorph new.
(self isKindOf: ScratchStageMorph)
ifTrue:
[t2 _ true.
t3 _ self showMotorBlocks]
ifFalse:
[t2 _ false.
t4 _ self ownerThatIsA: ScratchStageMorph.
t3 _ t4 notNil and: [t4 showMotorBlocks]].
t2 & t3 not
ifTrue:
[t5 _ ScratchFrameMorph getFont: #ViewerPage.
t6 _ 20.
t7 _ 12.
t8 _ StringMorph contents: 'Stage selected:' localized font: t5.
t1 addMorph: (t8 color: Color white;
position: t6 @ t7).
t8 _ StringMorph contents: 'No motion blocks' localized font: t5.
t1 addMorph: (t8 color: Color white;
position: t6 @ (t7 + 17)).
^ t1].
t6 _ 12.
t7 _ 10.
(self blocksFor: 'motion')
do: [:t9 | t9 = #- | (t9 = #~)
ifTrue:
[t9 = #- ifTrue: [t7 _ t7 + 15].
t9 = #~ ifTrue: [t7 _ t7 + 5]]
ifFalse: [t7 _ self
createBlock: t9
atPosition: t6 @ t7
onPage: t1]].
t3 ifFalse: [^ t1].
t2
ifFalse:
[t7 _ t7 + 7.
t1 addMorph: ((ImageMorph new form: (ScratchFrameMorph skinAt: #connector))
position: t6 @ t7).
t7 _ t7 + 20].
(self blocksFor: 'motor')
do: [:t9 | t9 = #- | (t9 = #~)
ifTrue:
[t9 = #- ifTrue: [t7 _ t7 + 15].
t9 = #~ ifTrue: [t7 _ t7 + 5]]
ifFalse: [t7 _ self
createBlock: t9
atPosition: t6 @ t7
onPage: t1]].
^ t1With:
viewerPageForMotion
| t1 t2 t3 |
t1 _ ScratchBlockPaletteMorph new.
t2 _ 12.
t3 _ 10.
(self blocksFor: 'motion')
do: [:t4 | t4 = #- | (t4 = #~)
ifTrue:
[t4 = #- ifTrue: [t3 _ t3 + 15].
t4 = #~
ifTrue:
[t3 _ t3 + 7.
t1 addMorph: ((ImageMorph new form: (ScratchFrameMorph skinAt: #connector))
position: t2 @ t3).
t3 _ t3 + 20]]
ifFalse: [t3 _ self
createBlock: t4
atPosition: t2 @ t3
onPage: t1]].
^ t1and:
viewerPageForMotor
| t1 t2 t3 |
t1 _ ScratchBlockPaletteMorph new.
t2 _ 12.
t3 _ 10.
(self blocksFor: 'motor')
do: [:t4 | t4 = #- | (t4 = #~)
ifTrue:
[t4 = #- ifTrue: [t3 _ t3 + 15].
t4 = #~
ifTrue:
[t3 _ t3 + 7.
t1 addMorph: ((ImageMorph new form: (ScratchFrameMorph skinAt: #connector))
position: t2 @ t3).
t3 _ t3 + 20]]
ifFalse: [t3 _ self
createBlock: t4
atPosition: t2 @ t3
onPage: t1]].
^ t1I first tried making separate ones then on viewerPageForCategory: put
t1 = 'motion' ifTrue: [^ self viewerPageForMotion , self viewerPageForMotion2 , self viewerPageForMotors].
Last edited by Pecola1 (2011-05-20 16:50:02)
Offline
gbear605 wrote:
Pecola1 wrote:
gbear605 wrote:
I think we should leave the password protect thing, but have the password publicly available, so that way people have to LOOK to find it.No, we should make the time thing, that would work, I know how to sense if the computer is mac or windows. I'll make it a block.
This is completely different, I mean, instead of having the developer menu directly open, I think people should have to type in a password, but the password is on the topic post or easy to find.
I know. Or, maybe it would be like, in the about Rocket, that way they don't have to go onto the internet and try to find it, but they HAVE TO LOOK AT ABOUT ROCKET!
That way if they really appreciate the mod, they will get the password.
Like it?
Offline
Pecola1 wrote:
gbear605 wrote:
Pecola1 wrote:
No, we should make the time thing, that would work, I know how to sense if the computer is mac or windows. I'll make it a block.This is completely different, I mean, instead of having the developer menu directly open, I think people should have to type in a password, but the password is on the topic post or easy to find.
I know. Or, maybe it would be like, in the about Rocket, that way they don't have to go onto the internet and try to find it, but they HAVE TO LOOK AT ABOUT ROCKET!
That way if they really appreciate the mod, they will get the password.
Like it?
good idea.
If anyone asks of course, we can just tell them, or tell them to look at about RKT
BTW, how did you hack in in the first place, before I told you the password (you hacked into Scraft, which I got this from)
Offline
gbear605 wrote:
Pecola1 wrote:
gbear605 wrote:
This is completely different, I mean, instead of having the developer menu directly open, I think people should have to type in a password, but the password is on the topic post or easy to find.I know. Or, maybe it would be like, in the about Rocket, that way they don't have to go onto the internet and try to find it, but they HAVE TO LOOK AT ABOUT ROCKET!
That way if they really appreciate the mod, they will get the password.
Like it?
good idea.
If anyone asks of course, we can just tell them, or tell them to look at about RKT![]()
BTW, how did you hack in in the first place, before I told you the password (you hacked into Scraft, which I got this from)
Offline
Offline
To clear a few things up:
I seriously am quitting, I need to get rid of my addiction
It's not to get rid of my geek 'tag'. It's to spend more time with people
Pecola1 is in charge
No convincing me otherwise
Post this on my topic please
- Last post from this account
Offline
greatssss wrote:
To clear a few things up:
I seriously am quitting, I need to get rid of my addiction
It's not to get rid of my geek 'tag'. It's to spend more time with people
Pecola1 is in charge
No convincing me otherwise
Post this on my topic please
- Last post from this account
Last post from this account to
Bump for scimonster, who i leave all my old stuff...
Offline
If ssss is really leaving, can I become a developer (if it's okay with him [if he hasn't already left])?
Offline
p4dd132s33 wrote:
greatssss wrote:
To clear a few things up:
I seriously am quitting, I need to get rid of my addiction
It's not to get rid of my geek 'tag'. It's to spend more time with people
Pecola1 is in charge
No convincing me otherwise
Post this on my topic please
- Last post from this accountLast post from this account to
Bump for scimonster, who i leave all my old stuff...
Hey, I'm not an RKT dev. ^^
Offline
Pecola1 wrote:
ssss wrote:
Pecola1 wrote:
Aheeem....
I use paint, So what?
Also when will Rocket Alpha 0.3 be out?After the world ends... not right after, i'll grab a quick bite of food from heaven before finishing. XD Not sure when it'll be out.
Umm... the world hasn't ended.
I hate world-ending jokes too.
Offline
scimonster wrote:
p4dd132s33 wrote:
greatssss wrote:
To clear a few things up:
I seriously am quitting, I need to get rid of my addiction
It's not to get rid of my geek 'tag'. It's to spend more time with people
Pecola1 is in charge
No convincing me otherwise
Post this on my topic please
- Last post from this accountLast post from this account to
Bump for scimonster, who i leave all my old stuff...Hey, I'm not an RKT dev. ^^
It means you get all my projects, signature stuff, etc etc...
& u get instant access to accepting new RKT devs...
Offline
ruffl3b33 wrote:
scimonster wrote:
p4dd132s33 wrote:
Last post from this account to
Bump for scimonster, who i leave all my old stuff...Hey, I'm not an RKT dev. ^^
It means you get all my projects, signature stuff, etc etc...
& u get instant access to accepting new RKT devs...
What, are you giving me your password for this?
Offline
scimonster wrote:
ruffl3b33 wrote:
scimonster wrote:
Hey, I'm not an RKT dev. ^^It means you get all my projects, signature stuff, etc etc...
& u get instant access to accepting new RKT devs...What, are you giving me your password for this?
![]()
You get to decide if someone should be in Rocket...
It also means you don't have to credit me for anything you use...
Please check your messages.
Offline
I think we should make a new topic for RKT that has an ORGANIZED front post, and we will use as a release thread later on.
Offline
ruffl3b33 wrote:
scimonster wrote:
ruffl3b33 wrote:
It means you get all my projects, signature stuff, etc etc...
& u get instant access to accepting new RKT devs...What, are you giving me your password for this?
![]()
You get to decide if someone should be in Rocket...
It also means you don't have to credit me for anything you use...
Please check your messages.
I'm not a Rocket dev. I don't know who should be, and what your policies were.
Why don't you give that to Pacola?
Offline