Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 14 15 [16]

Author Topic: The WikiFirmament:PROTO UP  (Read 12423 times)

PTTG??

  • Bay Watcher
  • Kringrus! Babak crulurg tingra!
    • View Profile
    • http://www.nowherepublishing.com
Re: The WikiFirmament:PROTO UP
« Reply #225 on: March 03, 2010, 01:18:23 am »

Tahin's been cooking up some interesting new tricks. We have Filters. Ask him to apply one to YOU!
Logged
A thousand million pool balls made from precious metals, covered in beef stock.

Bluerobin

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #226 on: March 03, 2010, 10:55:28 am »

Uhh I hope I just caught the server at a weird time, but I just got this when I tried logging in:

#18:explode, line 16:  Task ran out of ticks
... called from #10:unescape_for_url, line 3
... called from #10:parse_command, line 10
... called from #0:do_login_command, line 13
(End of traceback)

Edit: I tried again with the right username/password and got in just fine. Actually I tried again with the wrong one first and it just gave me the normal wrong password error, so I have no idea where the thing above came from.
Logged
The moment the lever was pulled, somebody's pet kitten stepped onto the bridge. I read somewhere that if a cat falls more than 11 stories, it instinctively flares its legs out to increase air resistance. This slows it down enough to stick the landing with relatively minor injuries. In Dwarf Fortress, apparently, cats don't do that.

sproingie

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #227 on: March 03, 2010, 12:14:56 pm »

Only way I can see that tick-out happening is if you gave it some wacktastically long string at the login prompt.   Is your client configured right?
Logged
Toady is the man who Peter Molyneux wishes he was

Quote from: ToadyOne
dragon pus was like creamy gold. Infect and collect!

Bluerobin

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #228 on: March 03, 2010, 01:11:00 pm »

I dunno... I think it's the same client I was using before and it seems to work the second time I try (and I just push up to recall the exact same command I used the first time). It's entirely possible the client's just screwy and I'll try another one at some point.
Logged
The moment the lever was pulled, somebody's pet kitten stepped onto the bridge. I read somewhere that if a cat falls more than 11 stories, it instinctively flares its legs out to increase air resistance. This slows it down enough to stick the landing with relatively minor injuries. In Dwarf Fortress, apparently, cats don't do that.

sproingie

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #229 on: March 03, 2010, 07:56:52 pm »

You can make this happen more than once?  I might have to add some logging just to figure out what's doing it...
Logged
Toady is the man who Peter Molyneux wishes he was

Quote from: ToadyOne
dragon pus was like creamy gold. Infect and collect!

Dakk

  • Bay Watcher
  • BLARAGLGLGL!
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #230 on: March 04, 2010, 03:26:26 pm »

Code: [Select]
#18:"explode" this none this
//  $string_utils:explode(subject [, delim])
//  Return a list of those substrings of subject separated by runs of delim[1].
//  delim defaults to space.
{subject, ?delim = " "} = args;
if (delim)
  delim = delim[1];
else
  return this:char_list(subject);
endif
subject += delim;
parts = {};
while (subject)
  if ((i = index(subject, delim)) > 1)
    parts = {@parts, subject[1..i - 1]};
  endif
  subject = subject[i + 1..$];
endwhile
return parts;

Odd, what exactly is #18?

Anyway, add a filter to me, an irish one :>
Logged
Code: [Select]
    ︠     ︡
 ノ          ﺍ
ლ(ಠ益ಠლ)  ┻━┻

Table flipping, singed style.

AussieGuy

  • Bay Watcher
  • [Australian]
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #231 on: March 04, 2010, 05:23:45 pm »

Sorry for being dumb but what does a filter do?
Logged

sproingie

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #232 on: March 05, 2010, 03:11:22 pm »

Odd, what exactly is #18?

#18 is $string_utils.  The verb itself isn't what's erroring, "ran out of ticks" means that the whole task timed out.  MOO tasks only get so many ticks and seconds before you have to suspend them, otherwise the MOO kills them with an error.  It's old-fashioned cooperative multitasking.  Your tasks should have a crapton of ticks on this server, so I suspect either BlueRobin's client is doing something funny (maybe sending telnet option negotiations) that the MOO doesn't know how to deal with, or there's a bug in the server having to do with task queues of unlogged-in players.
Logged
Toady is the man who Peter Molyneux wishes he was

Quote from: ToadyOne
dragon pus was like creamy gold. Infect and collect!

Dakk

  • Bay Watcher
  • BLARAGLGLGL!
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #233 on: March 16, 2010, 03:21:29 pm »

This project must be completed so I can make one of my avatar look like Thor from Shin Megami Tensei



Basically a huge viking wearing a scalemail swimsuit.
Logged
Code: [Select]
    ︠     ︡
 ノ          ﺍ
ლ(ಠ益ಠლ)  ┻━┻

Table flipping, singed style.

sproingie

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #234 on: March 16, 2010, 10:31:15 pm »

A huge viking with a brazilian bikini wax job.
Logged
Toady is the man who Peter Molyneux wishes he was

Quote from: ToadyOne
dragon pus was like creamy gold. Infect and collect!

ductape

  • Bay Watcher
  • MAD BOMBER
    • View Profile
    • Alchemy WebDev
Re: The WikiFirmament:PROTO UP
« Reply #235 on: March 17, 2010, 10:43:39 am »

his pee pee looks small for a Northern European...
Logged
I got nothing

Kaelem Gaen

  • Bay Watcher
  • And then it appeared the most terrifying creature
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #236 on: April 07, 2010, 02:07:37 am »

Huh maybe I should change the world name from Dwarf Fortress MUD to Wikifirmament then eh?

quinnr

  • Bay Watcher
    • View Profile
Re: The WikiFirmament:PROTO UP
« Reply #237 on: May 12, 2010, 09:00:55 pm »

Is this still alive?
Logged
To exist or not exist, that is the query. For whether it is more optimal of the CPU to endure the viruses and spam of outragous fortune, or to something something something.

PTTG??

  • Bay Watcher
  • Kringrus! Babak crulurg tingra!
    • View Profile
    • http://www.nowherepublishing.com
Re: The WikiFirmament:PROTO UP
« Reply #238 on: May 12, 2010, 11:22:19 pm »

Is this still alive?

Technically, yes.

Visit us sometime. I may be on and off anytime during the week, and if it gets busy, I'll be around on the weekend.
Logged
A thousand million pool balls made from precious metals, covered in beef stock.
Pages: 1 ... 14 15 [16]