English Stranded III Dev. Blog - Comments

1,826 replies
Goto Page
To the start Previous 1 2 ... 68 69 70 ... 91 92 Next To the start
27.12.15 08:35:24 pm
Up
Mami Tomoe
User
Offline Off
havent played any of the stranded games for longer than 30 minutes but i guess that you can add these with lua


Edit:
Oh yeah baby! page number 69
It's hard being the best girl in the whole entire world
28.12.15 04:02:08 pm
Up
Jawohl
User
Offline Off
indeed, theres a secret party here on page 69!
05.01.16 02:34:08 pm
Up
DaisukeOno
User
Offline Off
I hope it have more than 4 island. It's boriing. I finish game too fast (Well... with some website help).
I have a potato internet
05.01.16 03:12:45 pm
Up
pirate of island
User
Offline Off
i hope it have more than 5 islands ! and a long campaign !
IMG:https://imagizer.imageshack.us/v2/479x73q90/843/mlym.png
05.01.16 04:04:22 pm
Up
The Grim Reaper
User
Offline Off
I have an idea. When a player dies the game can play a short video
how the player dies. Hence it can be disabled for the faint of hearted.
Pc died.
05.01.16 04:08:08 pm
Up
Assassin moder
User
Offline Off
Dont worry about campaign It wont be boring for sure, also community will be able to create its own

@user The Grim Reaper: Please, do not post ideas here, there is somewhere here a thread to do this.
19.01.16 04:26:17 pm
Up
GeoB99
Moderator
Offline Off
Just to come think of it, what's up with the development stage of Stranded 3? It's like since ~3 months that there isn't any news posted recently.
19.01.16 04:31:09 pm
Up
Yates
Reviewer
Offline Off
It took him three years to finish Stranded II, don't expect III any time soon

Which is quite sad
19.01.16 08:36:44 pm
Up
iLoveUS
User
Offline Off
If Stranded III was released this early. The game would be crawling with bugs.

Which will cost me to buy an insecticide.
"No matter how much training you have or how strong you are, when you step on the battlefield for the first time, it changes you forever."
19.01.16 09:54:01 pm
Up
VADemon
User
Offline Off
If Stranded 3 was released this early, it wouldn't have any playable content.
19.01.16 10:04:54 pm
Up
Assassin moder
User
Offline Off
If Stranded III was released this early, I'll buy a dictionary.

@user Yates: That is sad because he works alone just with a little bit of help from the community.. and he treats game developing as a hobby too.
07.03.16 08:11:08 am
Up
ohaz
User
Offline Off
hey @user DC, I like the river stuff!
If you have problems working from week to week, I'd suggest an agile approach. Each week, take some time to recap what you did last week and make plans for what you're going to do next week. Then, use a kanban board IMG:https://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Simple-kanban-board-.jpg/1920px-Simple-kanban-board-.jpg
to get yourself to do it. The first few weeks you might fail with figuring out how much you can do, but after that you'll get it and you'll be faster. I do this for my projects too from time to time
https://ohaz.engineer - Software Engineering
07.03.16 08:49:24 am
Up
Yates
Reviewer
Offline Off
freedcamp is a nice tool when you don't want an actual whiteboard and sticky notes.
07.03.16 09:11:14 am
Up
Mami Tomoe
User
Offline Off
Add a option to build an NPC village with working NPCs

Also game looks awesome!

(Couldn't find ideas topic)
It's hard being the best girl in the whole entire world
07.03.16 07:44:03 pm
Up
GeoB99
Moderator
Offline Off
I also concur whether with Sticky Notes or Freedcamp. In this way, you don't have to worry so much about which things were done, to-do and such. Easiest approach and less hassle. Besides, I'm excited that you're still posting new dev blog posts about Stranded 3.
08.03.16 08:23:34 am
Up
Punk4elo182
User
Offline Off
Russian language will be immediately? Or have to wait until russifyi?
IMG:http://hellgatelondon.ru/i/bars/bar1.png
08.03.16 02:48:31 pm
Up
GeoB99
Moderator
Offline Off
@user Punk4elo182:
First page, thread tool Stranded III Dev. Blog has written:
Participation / Translation
A lot of people already contacted me to offer their help. I'm very thankful for this. Many wanted to translate the game, some wanted to provide music or other stuff. However I'm currently in a development stage where I can't use that help. It's simply too early.

I will develop the game in English (and create a German translation myself) and it probably doesn't make much sense to translate it until it's finished. All strings will be stored externally in text files so everybody will be able to create translations when it's done. Please do not contact me for this until the game is done.
15.03.16 08:43:58 pm
Up
Klirkz
User
Offline Off
I think Shore Detection is a great idea for the rivers. Where should a river end if not in a lake or in the sea (beside swamps)! But I understand lakes above sea level will be enabled in SIII... So shouldn’t you include them in your Shore Detection?

Ps: Allows your terrain so far to have a lake or dry land beneath sea level? The sea is probably that infinite plane again, right?
Truth is not an opinion.
28.03.16 12:28:53 pm
Up
VADemon
User
Offline Off
Maybe I don't understand something about OOP in Lua, but @user DC: how do you do that?
S3 Blog has written:
I worked on the Lua API to make it more object oriented. It previously worked like:
Code:
1
2
3
4
sprite = s3sprite.create(image, x, y)
s3sprite.setColor(sprite, {255, 0, 0})
s3sprite.setRotation(sprite, math.random(360))
s3sprite.setSize(sprite, 3, 3)



Now you can do the same thing with a bit less code:
Code:
1
2
3
4
sprite = s3sprite.create(image, x, y)
sprite.setColor({255, 0, 0})
sprite.setRotation(math.random(360))
sprite.setSize(3, 3)

How do the new functions point to their own (parent) object?
Normally you'd use sprite:setColor(color) for OOP which equals to sprite.setColor(self, color) -- correct me if I'm wrong.
To the start Previous 1 2 ... 68 69 70 ... 91 92 Next To the start