Same story here. And now, I finally can build all the Ages I want! Muwahahaha!Christopher wrote:I planned an age for MOULa fopr a long time now, but never really found time to actually model it in 3ds Max. I would like to try to realize it (or small parts of it) in your project.
A text Myst Online project
-
- Posts: 79
- Joined: Mon Jun 10, 2013 2:29 am
Re: A text Myst Online project
Moula KI: 17967159
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists
- Christopher
- Posts: 276
- Joined: Mon Jul 19, 2010 3:25 am
- MOULa KI#: 0
Re: A text Myst Online project
I read somewhere, where I can submit bugs, but I forgot where... But I noticed that I can see "Mystler" at the Ferry Dock, though he isn't online since 20 hours.
Christopher
Christopher
Re: A text Myst Online project
Could he have just left his browser open while he did something else? I get the impression there's some sort of idle timeout (I sometimes have to refresh the tab if I've been away for a while), but I'm not really clear on the details.Christopher wrote:I read somewhere, where I can submit bugs, but I forgot where... But I noticed that I can see "Mystler" at the Ferry Dock, though he isn't online since 20 hours.
Have Ages, and link to them without bindings. [Words 1:13]
Seltani
Seltani
Re: A text Myst Online project
Woo, another bug!I'm having some trouble with realm properties evaluating properly
This is actually a problem with expressions that evaluate to text. [[location().foo]], [[realm.foo]], and [[text(foo)]] all go wrong.
You can probably handle this case by just writing [[foo]], because the realm property will be inherited by the location (as long as you have not overridden it with a location foo property). But the bug is clearly a bug.
Bug tracking is at https://github.com/erkyrath/tworld/issues . You'll notice I have a big list already, although they're *mostly* features-to-do rather than bugs...
Re: A text Myst Online project
The server links you out of the world after you've been disconnected for ten minutes.But I noticed that I can see "Mystler" at the Ferry Dock, though he isn't online since 20 hours.
EDIT-ADD: Sorry, misremembered my own code. It checks every three minutes, which means you will be linked out of the world 0-to-3 minutes after you disconnect. (I should make that a little more predictable.)
Mystler registers as still being connected. If you have a browser window/tab open, that keeps the connection open. In my experience, when you close the window/tab, that closes the connection -- but I'm not positive this is true of all browsers.
(If you leave the window open but find yourself disconnected, it's probably because I updated the software and restarted the server. I've been doing that every couple of days. You should see a warning first.)
Last edited by belford on Tue Jul 09, 2013 10:04 am, edited 1 time in total.
Re: A text Myst Online project
Long-term plans: I am still a muddled whirl of short-term plans. :/
- Christopher
- Posts: 276
- Joined: Mon Jul 19, 2010 3:25 am
- MOULa KI#: 0
Re: A text Myst Online project
Three questions:
1. I tried to set a property in a timer. When the timer has finished I get the text from the eventloc, but the property hasnt changed.
the code from the timer, foo is set to "Value" with a default of 0:
2. Why is something like
not allowed? I would like to reset a property back to 0 when a new player moves to this location. Is there another way of doing this?
3. Is it possible to move all player from one location to another location when one player triggers something?
I hope you can help me with these questions. I like this editor and my age is growing
Christopher
1. I tried to set a property in a timer. When the timer has finished I get the text from the eventloc, but the property hasnt changed.
the code from the timer, foo is set to "Value" with a default of 0:
Code: Select all
eventloc(locations.mylocation, "blabla")
foo=foo+1
Code: Select all
[[foo=0]]
some text
3. Is it possible to move all player from one location to another location when one player triggers something?
I hope you can help me with these questions. I like this editor and my age is growing

Christopher
-
- Posts: 79
- Joined: Mon Jun 10, 2013 2:29 am
Re: A text Myst Online project
Success! The Age of Elahto has a moon that moves across the sky, and eclipses the sun! I've viewing the movement 1440 times faster in a test Age using otherwise identical code.
To answer your questions, Christopher, the values you see in the editor are the values for the default instance. All instances start with them. What your code is changing, however, are instance values. You can't see these, and they are unique to each instance. No, one player's actions cannot directly affect another player.
To answer your questions, Christopher, the values you see in the editor are the values for the default instance. All instances start with them. What your code is changing, however, are instance values. You can't see these, and they are unique to each instance. No, one player's actions cannot directly affect another player.
Moula KI: 17967159
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists
- Christopher
- Posts: 276
- Joined: Mon Jul 19, 2010 3:25 am
- MOULa KI#: 0
Re: A text Myst Online project
I know that, but if I understand it correcly I am able to see the property if I print them with [[foo]]. And it seems it didn't change.KathAveara wrote:To answer your questions, Christopher, the values you see in the editor are the values for the default instance. All instances start with them. What your code is changing, however, are instance values. You can't see these, and they are unique to each instance.
Christopher
-
- Posts: 79
- Joined: Mon Jun 10, 2013 2:29 am
Re: A text Myst Online project
Then I don't know why it isn't changing. I have a repeating timer in my Age which causes a value to cycle, which has a visible effect in the Age, in the form of the position of the moon. It works fine.
Moula KI: 17967159
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists
DI KI: 00205116
deviantART: kathaveara
tumblr: kaththedragon
Grand Master of the Guild of Linguists