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

#1001 2013-03-11 15:28:06

Smozzick
Scratcher
Registered: 2011-10-23
Posts: 100+

Re: Northern Lights Collaboration

Hi, I won't be able to help with this at all anymore so please ignore my application; very busy irl atm.


http://i50.tinypic.com/ded8m.png

Offline

 

#1002 2013-03-11 16:04:27

funnymee323
Scratcher
Registered: 2012-12-16
Posts: 100+

Re: Northern Lights Collaboration

It's fine Smoz! But if you could check in from time to time that'd be nice  smile
Chesseater: Well, we each do a little something. Somebody does graphics, another does scripting, and all together we make an awesome game.  big_smile

Offline

 

#1003 2013-03-11 19:16:15

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

Hey, guys, i really need to stress this, and we need to make a serious decision.

I have been thinking about my game idea, Tribez, and i am starting to have SERIOUS doubts...

Not that the people here aren't capable, but more like, i am not sure that scratch can do a good RTS. PLEASE read my description, including the new details below, and then ask me to make sure you have this right, and then PLEASE tell me if you have any idea if we can:

- Make several hut sprites, and have them copy over and over onto different territories.

- Make it so that the warrior guys can also appear at any hut they are told to come out of.

- Make it so that from one warrior sprite, the player can have several armies all represented by on sprite.

- Make it MMO, i am still a beginner, and i have not the slightest idea how we would do this.  sad

- Make it so that, because the Decoration objects will be placed randomly, that the warrior sprites know to go around them

If none of us can do these things, i am afraid we will have to turn our attention to a much less complicated idea,  like an RGP or serious arcade game.

IMPORTANT POST:


Here are more details for tribez:

You need to send at least one army into an unoccupied territory to claim it.
Once claimed, you can recruit armies here, or store them for defense.

You can send an army into any hut you have, and if the hut is attempted by an enemy, they will automatically defend it.

Your men gain skill by killing the enemy, and if your numbers are way below theirs, then they will lose all their skill, and start at skill one.


Welsh will be added, if i know we are still going to make Tribez, as though i think its a fun, epic idea, i believe it to currently be impossible, within scratches limitations.  sad

PLEASE EVERYONE DO AS I ASKED EARLIER IN THIS MESSAGE, In the bold.

Offline

 

#1004 2013-03-11 19:22:28

StarscreamClone
Scratcher
Registered: 2012-05-19
Posts: 1000+

Re: Northern Lights Collaboration

Okay, hut sprites may have a set x or y vel (if you have 'em both) and hide when they aren't in stage parameters (once we get the base done, I can sort that out).  Decoration sprites, I told you my idea already, hut thingmay use a "go to" block, and that's what I can come up with.


http://www.blocks.scratchr.org/API.php?action=random&return=image&link1=http://i1154.photobucket.com/albums/p522/lizzyhipo/Angelica101-1-1-1.jpg&link2=http://i46.tinypic.com/2elqwdy.png&link3=http://i1273.photobucket.com/albums/y404/Hulydooly/decepticon.jpg&link4=http://i44.tinypic.com/34rvb07.png

Offline

 

#1005 2013-03-11 19:27:15

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

StarscreamClone wrote:

Okay, hut sprites may have a set x or y vel (if you have 'em both) and hide when they aren't in stage parameters (once we get the base done, I can sort that out).  Decoration sprites, I told you my idea already, hut thingmay use a "go to" block, and that's what I can come up with.

Right, actually that wasn't the problem with the huts, it having 100+ of the same one, all doing something different. For instance, if i want to draft an army out of my "Front line" hut, i don't want it to go to the first one, you see?

Offline

 

#1006 2013-03-11 19:40:52

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: Northern Lights Collaboration

MP is nearly impossible.

The things you are presenting will take a ton of work.  I could probably untange everything, but it'll take a very long time.  You need to dynamically update the list with the imaginary coords of the hut on the screen, if it's on the screen, to match the scroll, and not to mention, you need a sprite for every single hut that you have, becuase stamping wouldn't work with the scrolling yuo are using, unless it's stamp scrolling.  Another hing is that the AI has to react to your every move, it can't just keep making huts while you destory it's base.  We have to create an AI that can "Learn", and thats very, very hard.  Also, the sodiers pathfinding can't just go straight through huts and jsut phase through.  They have to have sensing, which requres two more lists, one holding the hut coords and deletes them if they are destoyed, and and one holding data for every soldier you have, as well as designing a simble, we have to set the scanner fore every possible color you have, whcich is 512+.  So yeah, not trying to hate, but just pointing out it's flaws.  They also have to attack, whcich will reqire more lists.  With so many for just singleplayer, I doubt this will be able to go MP, at least not on scratch.

Last edited by berberberber (2013-03-11 19:41:51)


http://i47.tinypic.com/2iaa73k.png

Offline

 

#1007 2013-03-11 19:49:09

estile
Scratcher
Registered: 2013-01-26
Posts: 100+

Re: Northern Lights Collaboration

true the number of sprites may be a problem, but probably not the lists, from my experiance, list can hold lots of data without slowing things, and i have a slow computer. also, i think the idea was cloning for the huts.


http://i45.tinypic.com/s4nvxl.png

Offline

 

#1008 2013-03-11 19:50:28

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

berberberber wrote:

MP is nearly impossible.

The things you are presenting will take a ton of work.  I could probably untange everything, but it'll take a very long time.  You need to dynamically update the list with the imaginary coords of the hut on the screen, if it's on the screen, to match the scroll, and not to mention, you need a sprite for every single hut that you have, becuase stamping wouldn't work with the scrolling yuo are using, unless it's stamp scrolling.  Another hing is that the AI has to react to your every move, it can't just keep making huts while you destory it's base.  We have to create an AI that can "Learn", and thats very, very hard.  Also, the sodiers pathfinding can't just go straight through huts and jsut phase through.  They have to have sensing, which requres two more lists, one holding the hut coords and deletes them if they are destoyed, and and one holding data for every soldier you have, as well as designing a simble, we have to set the scanner fore every possible color you have, whcich is 512+.  So yeah, not trying to hate, but just pointing out it's flaws.  They also have to attack, whcich will reqire more lists.  With so many for just singleplayer, I doubt this will be able to go MP, at least not on scratch.

I am beginning to agree, as i have never even used lists, i have no idea. I know for a fact that this game could be made in normal programming, and perhaps with the proper training, rather easily. But i didn't know how hard it would be when i first imagined it, and i am beginning to think that my other idea could work much, much better.  smile

The only thing you misunderstood really is that the huts don't get "Deleted", they just swap owners or are unoccupied until a tribe would claim them.

Anyway, this doesn't mean that Tribez is bad, or more importantly, that this collab should now just, fall apart. I have had much fun directing it, but i believe that it is pretty much impossible with scratch, which was clearly designed for much less complicated projects.  sad

So, do the rest of you agree? If we all decide on stopping the production of Tribez, we should still keep making projects. Any ideas? If you know me, you know i have plenty.  smile

Offline

 

#1009 2013-03-11 19:51:30

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

estile wrote:

true the number of sprites may be a problem, but probably not the lists, from my experiance, list can hold lots of data without slowing things, and i have a slow computer. also, i think the idea was cloning for the huts.

Yes, that was the idea. But the A.I. is the major problem....  sad

Offline

 

#1010 2013-03-11 20:26:08

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: Northern Lights Collaboration

Cloning can only take you so far, and we still have the matter of an adaptive AI.  You have to remember, scratch is a beginner's language, with a beginner's toolset.


http://i47.tinypic.com/2iaa73k.png

Offline

 

#1011 2013-03-11 20:35:56

funnymee323
Scratcher
Registered: 2012-12-16
Posts: 100+

Re: Northern Lights Collaboration

Wow.... giving up Tribez?
I really don't know what to say. D;

Offline

 

#1012 2013-03-11 20:48:59

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

funnymee323 wrote:

Wow.... giving up Tribez?
I really don't know what to say. D;

I know, it terrible, but if you read my previous posts, you'll know why.  sad  (Crying my eyes out)... Just kidding, but i wish we could have done it... It's not our fault...


So, is it official, are we stopping Tribez and diving in to a different project? More like an arcade or RPG or amazing platformer?

FUNNYMEE: If we agree to stop Tribez, then you need to take it off the front post. I will copy the idea and keep it... Who knows, i might make it some day when i become a software engineer.  smile

Offline

 

#1013 2013-03-11 20:53:32

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: Northern Lights Collaboration

RPGs are pretty hard too...

Why not a game full of minigames, that you can use to earn coins and and unlock tropies and more minigames and such?


http://i47.tinypic.com/2iaa73k.png

Offline

 

#1014 2013-03-11 20:55:07

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

Yeah, they're hard... But not that hard.  wink

Also, i think you're on to something. The size of this collab is hard to focus and keep everyone on the same page with one, grand project, maybe everyone could make a minigame? Also, if we go that route, i am making the menu!  big_smile

Offline

 

#1015 2013-03-11 20:59:24

berberberber
Scratcher
Registered: 2012-03-08
Posts: 1000+

Re: Northern Lights Collaboration

Can I design the graphics?  And code a few minigames?


http://i47.tinypic.com/2iaa73k.png

Offline

 

#1016 2013-03-11 21:03:49

CAA14-NL
Scratcher
Registered: 2013-02-28
Posts: 16

Re: Northern Lights Collaboration

berberberber wrote:

Can I design the graphics?  And code a few minigames?

Well, i think you're getting ahead of the collab, they may want to just modify Tribez into a more economic game play that's actually possible instead. But if we do, then i think you'll be fine.


Mind Blowing Math! Challenge yourself!
http://www.blocks.scratchr.org/API.php?action=random&return=image&link1=http://i45.tinypic.com/292oakk.png&link2=http://i.imgur.com/t9kiBfd.png

Offline

 

#1017 2013-03-12 05:02:00

ieu99
Scratcher
Registered: 2013-02-04
Posts: 100+

Re: Northern Lights Collaboration

Wow so many posts  yikes !
Iamouer could you finish the sprites (or just one) please!


http://i49.tinypic.com/mwcvbd.png

Offline

 

#1018 2013-03-12 05:22:38

Blazingwave
Scratcher
Registered: 2012-10-27
Posts: 500+

Re: Northern Lights Collaboration

CAA14 wrote:

berberberber wrote:

MP is nearly impossible.

The things you are presenting will take a ton of work.  I could probably untange everything, but it'll take a very long time.  You need to dynamically update the list with the imaginary coords of the hut on the screen, if it's on the screen, to match the scroll, and not to mention, you need a sprite for every single hut that you have, becuase stamping wouldn't work with the scrolling yuo are using, unless it's stamp scrolling.  Another hing is that the AI has to react to your every move, it can't just keep making huts while you destory it's base.  We have to create an AI that can "Learn", and thats very, very hard.  Also, the sodiers pathfinding can't just go straight through huts and jsut phase through.  They have to have sensing, which requres two more lists, one holding the hut coords and deletes them if they are destoyed, and and one holding data for every soldier you have, as well as designing a simble, we have to set the scanner fore every possible color you have, whcich is 512+.  So yeah, not trying to hate, but just pointing out it's flaws.  They also have to attack, whcich will reqire more lists.  With so many for just singleplayer, I doubt this will be able to go MP, at least not on scratch.

I am beginning to agree, as i have never even used lists, i have no idea. I know for a fact that this game could be made in normal programming, and perhaps with the proper training, rather easily. But i didn't know how hard it would be when i first imagined it, and i am beginning to think that my other idea could work much, much better.  smile

The only thing you misunderstood really is that the huts don't get "Deleted", they just swap owners or are unoccupied until a tribe would claim them.

Anyway, this doesn't mean that Tribez is bad, or more importantly, that this collab should now just, fall apart. I have had much fun directing it, but i believe that it is pretty much impossible with scratch, which was clearly designed for much less complicated projects.  sad

So, do the rest of you agree? If we all decide on stopping the production of Tribez, we should still keep making projects. Any ideas? If you know me, you know i have plenty.  smile

We spent 3 months working on tribez.
Can't we just make a less complicated version of tribez?


http://i42.tinypic.com/t8nrlh.gif  http://blocks.scratchr.org/API.php?user=Blazingwave&action=onlineStatus&online=http://i49.tinypic.com/25flloj.gif=http://i45.tinypic.com/o8i97l.gif
http://i41.tinypic.com/s1lyyo.jpg

Offline

 

#1019 2013-03-12 08:16:31

Teleport
Scratcher
Registered: 2013-02-28
Posts: 33

Re: Northern Lights Collaboration

If we do make a new game:
I wanna be the head spriter!  tongue  Seriously, though. I'll lead the animations'n'sprites'n'stuff. I've already made some textures. Uploaded here: http://scratch.mit.edu/projects/Teleport/3170754
I wanna code a bit too.

REALLY IMPORTANT INFO:
I just found out how we could make any of our games online. It's called Mesh. Here's the link: http://wiki.scratch.mit.edu/wiki/Mesh
I'm super hyped.


http://i38.tinypic.com/j9q2s8.png

Offline

 

#1020 2013-03-12 08:43:47

ieu99
Scratcher
Registered: 2013-02-04
Posts: 100+

Re: Northern Lights Collaboration

Just one request at everyone please just use @ instead of replying which takes up tons of space and is a pain to read!


http://i49.tinypic.com/mwcvbd.png

Offline

 

#1021 2013-03-12 08:44:58

Vyrinn
Scratcher
Registered: 2013-02-19
Posts: 100+

Re: Northern Lights Collaboration

Oooh, Mesh looks fun. :3
Hey all, I just wanna say, I am sooooooooooooo sorry for being MIA these past few days, but I've had a lot of stress lately and I just haven't had time to go on Scratch. If there's anything I can do to help with figuring out how to make Scratch easier to develop or some small coding or even a sprite or a bunch, I would love to do that. Again, very sorry. ;~;
Can you forgive me? I'm gonna try to be on more often now.


http://media-cache-lt0.pinterest.com/192x/30/cc/ff/30ccff9e97d50430b576bd0eda796b60.jpg

Offline

 

#1022 2013-03-12 08:48:22

Vyrinn
Scratcher
Registered: 2013-02-19
Posts: 100+

Re: Northern Lights Collaboration

That was my hundredth post!  big_smile
....[and yet still not a Scratcher.... xD]....


http://media-cache-lt0.pinterest.com/192x/30/cc/ff/30ccff9e97d50430b576bd0eda796b60.jpg

Offline

 

#1023 2013-03-12 09:08:08

ieu99
Scratcher
Registered: 2013-02-04
Posts: 100+

Re: Northern Lights Collaboration

Hi Vyrinn hope you are not stressed out now!  big_smile


http://i49.tinypic.com/mwcvbd.png

Offline

 

#1024 2013-03-12 09:54:30

iaoumeur
Scratcher
Registered: 2012-11-24
Posts: 500+

Re: Northern Lights Collaboration

Hey people, I check back and there's another page!
Are you seriously thinking about creating a different game? I know it would be really hard but I think it could still work on scratch, however I don't know if it will fit in the 10MB data limit; especially if there's going to be music. I know I'm just a helper, but I think it must be really hard for CAA14/funnymee because there's so many people! This is just a suggestion and I know I'm just a helper but why don't you have a few leaders so that there will be a few people to manage the wave of posts?


The Dot 3 is out!!! Play it here!

Offline

 

#1025 2013-03-12 10:39:23

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Northern Lights Collaboration

Good idea iao.

BLAZINGWAVE: We have hardly spent one month on Tribez, and we never got to the game itself anyway. But, agreeing with you, I think that we could try to make a more simple vertion of Tribez, but (as crazy as this sounds,) I only one idea for that route, and that's making it like a tycoon.

ALSO: I think, even if we continue with Tribez, that we should make that arcade idea, where everyone makes a mini game and we compile it into "Northern Lights Arcade".

Any how, continuing Tribez is up to y'all, though I still think that my original cool Tribez cannot be made.... And speaking of that, I just got another idea for it...


I'll hopefully be on later today.

Offline

 

Board footer