Profile for Thralni

Error message

Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /var/www/pied-piper.ermarian.net/includes/common.inc).

Recent posts

Pages

AuthorRecent posts
Hi in General
Master
Member # 5977
Profile Homepage #28
I like eating chickens. And don't worry, I won't start the Almighty Chicken God business again.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
2008! in General
Master
Member # 5977
Profile Homepage #23
Yay. It's 2008 here in Holland for exactly 10:40 hours. I congratulate you all with this happy, new year and I hope all of you make something useful out of it.

I now will proceed to present you with a porcupine:

IMAGE(http://www.hickerphoto.com/data/media/40/porcupine_sc108.jpg)

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Beta call: Tales From the Tabard Inn in Blades of Avernum
Master
Member # 5977
Profile Homepage #16
quote:
Originally written by Excalibur:

I have to refrain, as I let Thralni down the last time I tested something.
Oh, cheer up. Past experiences should not be the basis for future beta testings. If you really want to, just apply. The designer will pick you if he thinks you are trustworthy. And for as far as I remember it, you did manage to help me quite well, but you got problems with internet and such... things that were hardly your fault.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Strange terrain behaviour in the outdoors in Blades of Avernum Editor
Master
Member # 5977
Profile Homepage #0
In WtRM, there is this place where the outdoor terrain altered. The actual altering of placing stones and changing floors is quite all right, but there also happens something that shouldn't be happening: for some reason, the terrain "shoots up", making these large towers of earth. the freakish thing is, is that there is no set_height call anywhere in the script.

The script:

//Outdoor Script for x = 2 y = 1

beginoutdoorscript;

variables;

int a,choice;

body;

beginstate INIT_STATE;
break;

beginstate START_STATE;

if (get_flag(16,0) == 9) {
set_terrain(14,25,138); // All terrain modifications
set_terrain(15,25,137);
set_terrain(17,25,137);
set_terrain(18,25,138);
set_terrain(43,26,137);
set_terrain(15,26,138);
set_terrain(16,26,137);
set_terrain(17,26,137);
set_terrain(18,26,138);
set_terrain(14,20,138);
set_terrain(15,20,138);
set_terrain(19,19,137);
set_terrain(19,16,138);
set_terrain(19,15,138);
set_terrain(18,15,137);
set_terrain(13,16,137);
set_terrain(13,17,138);
set_terrain(14,17,137);
set_terrain(15,16,137);
set_terrain(10,29,137);
set_terrain(13,29,138);
set_terrain(18,28,138);
set_terrain(21,28,138);
set_terrain(19,29,138);
set_terrain(20,30,138);
set_terrain(23,30,137);
set_terrain(19,31,137);
set_terrain(18,32,138);
set_terrain(17,33,137);
set_terrain(19,33,137);
set_terrain(23,32,138);
set_terrain(23,34,138);
set_terrain(16,33,137);
set_terrain(13,33,138);
set_terrain(15,36,138);
set_terrain(18,37,137);
set_terrain(19,37,137);
set_terrain(7,29,137);
set_terrain(5,29,137);
set_terrain(4,24,138);
set_terrain(4,23,138);
set_terrain(4,21,137);
set_terrain(4,17,138);
set_terrain(4,25,138);
set_terrain(6,29,137);

set_floor(15,16,89); // All floor modifications
set_floor(14,16,89);
set_floor(16,18,44);
set_floor(14,25,73);
set_floor(15,25,89);
set_floor(16,25,89);
set_floor(17,25,89);
set_floor(18,25,74);
set_floor(14,26,72);
set_floor(15,26,89);
set_floor(16,26,72);
set_floor(17,26,74);
set_floor(18,26,72);
set_floor(10,29,1);
set_floor(13,29,3);
set_floor(19,28,73);
set_floor(21,29,73);
set_floor(23,30,1);
set_floor(20,30,3);
set_floor(12,31,73);
set_floor(17,31,73);
set_floor(14,32,73);
set_floor(19,33,1);
set_floor(21,33,73);
set_floor(16,35,73);
set_floor(18,36,73);
set_floor(19,37,1);
set_floor(21,37,73);
set_floor(23,37,73);
set_floor(22,39,73);
set_floor(7,29,1);
set_floor(5,29,3);
set_floor(4,24,3);
set_floor(4,23,1);
set_floor(4,22,1);
set_floor(4,17,1);
set_floor(4,25,3);
set_floor(5,29,1);
}

break;

beginstate 10;
if (get_flag(121,0) == 1) {
set_flag(18,0,0);
}
break;

beginstate 11;
reset_dialog();
add_dialog_str(0,"",0);
add_dialog_str(1,"",0);
add_dialog_choice(0,"Not yet.");
add_dialog_choice(1,"I'd like to leave now.");
choice = run_dialog(1);

if (get_flag(5,12) == 0) {
if (choice == 1) {
message_dialog("That is good news for Riverrod. Many people will thank you for this stay.","");
block_entry(1);
}
if (choice == 2) {
message_dialog("","");
end_scenario(0);
}
}

if (get_flag(5,12) == 1) {
if (choice == 1) {
message_dialog("","");
block_entry(1);
}
if (choice == 2) {
message_dialog("","");
message_dialog("","");
message_dialog("THE END","");
end_scenario(1);
}
}
break;

beginstate 12;
if (get_flag(121,0) == 1) {
set_flag(18,0,1);
}
break;

beginstate 13;
if (get_flag(26,1) == 0) {
block_entry(1);
end();
}
if (get_flag(121,1) == 1)
end();
message_dialog("","");
set_flag(121,1,1);
break;

beginstate 14;
message_dialog("","");
break;
And a screenshot of how it looks like is here: http://thralni.ermarian.net/Afbeelding2.png

[ Saturday, December 29, 2007 13:43: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Exodush.. in Blades of Avernum
Master
Member # 5977
Profile Homepage #1
Are you playing as a god party? Exodus ahs some errors and bugs that only seem to appear with god parties.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Blades Chat! (Time TBA) in Blades of Avernum
Master
Member # 5977
Profile Homepage #2
If I understand it correctly, than 4pm EST is 9pm GMT? (GMT-5:00 = EST?) If that's the case, I'll be able to join. That means that it's 10:00 pm in Holland, and therefor I'll be able to join. I assume the chatroom is 'blades"?

*is happy*

[ Thursday, December 27, 2007 01:09: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
What video gmaes would you like to see made into movies... no Halo! in General
Master
Member # 5977
Profile Homepage #12
quote:
Originally written by Emperor Tullegolar:

Wolfenstein would be good, too, since you really never can have enough movies about bizarre Nazi experiments and the occult.[/i]
Oh, I absolutely love the game Return to castle Wolfenstein, and therefor I am very glad that a movie of that game has already been announced. I don't remember when exactly it should be finished, though.

In all honesty, most movies I've seen of games were terrible. Think of Doom. That movie was horrendous... By the way, did anybody see that movie "Hitman"? I've started playing the Hitman games, and I like them a lot. I wondered how the movie was. is it any good?

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
The Abominal Desktop Thread Continued: A New Abomination in General
Master
Member # 5977
Profile Homepage #52
Oh my god, that bar at the bottom looks really identical like the dock of Mac OS 10.5, you know. This has kept me wondering for alonger time, bcause the Spaces" of OS 10.5 actually have been for a long while in Linux already. I wonder if this Linux dock was in Linux already before OS 10.5 was announced?

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
The Abominal Desktop Thread Continued: A New Abomination in General
Master
Member # 5977
Profile Homepage #49
IMAGE(http://i25.photobucket.com/albums/c77/Thralni/screen-capture-1.jpg)

No, the desktop didn't really change. All that has changed are the icons in the dock (got some new games) and the files on the desktop.

[ Sunday, December 23, 2007 02:56: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Happy Birthday, Drakey! in General
Master
Member # 5977
Profile Homepage #28
quote:
Originally written by Ephesos:

Happy birthday, Drakey! Have some cake, which is not a lie.

IMAGE(http://img324.imageshack.us/img324/1705/cakefl3.jpg)

Portal and Drakey for ever! I hope you have a pleasant year, full of discovery. Go drink a beer on the house.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Omaha Mall Shooting in General
Master
Member # 5977
Profile Homepage #4
quote:
Originally written by Excalibur:

These incidents seem to happen more often.

It should be noted that incidents like this rarely occur outside of the U.S.

Oh, my dear friend, I don't think you know what has happened in the past two months in Holland, do you? Of four or five families either the father or the mother got crazy and killed off their entire family (children, wife/husband) before commiting suicide.

Every time I think about it, it makes me sick. What also makes me sick, is that you say that such incidents happen most in the US.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Meadows of Heaven in General
Master
Member # 5977
Profile Homepage #37
quote:
Originally written by Taliesin:

I don't listen to much heavy music, but this is definitely the ultimate metal band. Check it out if that's your thing!!!
Bullet for my Valentine? I haven't listened to them that much, but the songs I do have don't really strike me as anything "heavy"... But then again, I'm comparing it to Trivium, as that's the sort of metal i usually listen to. For other, non-metal fans, Bullet for my Valentine may sound heavy.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Meadows of Heaven in General
Master
Member # 5977
Profile Homepage #19
1. What was the last song you listened to?

Detonation, by Trivium *melts away*

2. What was the last song / album you bought?

Pablo Honey, by Radiohead

3. What is your favorite song?

That's a tough one, because for each band I have at least three favorite songs. If i think hard I can say... that I have no idea. I can give a short list of what songs I love:

By trivium:
Pulling the strings of your martyr;
This world can't tear us apart;
The Rising;
The Crusade;
etc... If I go on I'll have a list of twenty songs, so...

By Radiohead:
I have Five albums of them: OK Computer, The Bends, Pablo Honey, Amnesiac and Kid A, and it's only Kid A I don't like as much as the other four. I think that should give a good picture of what I like of them.

I think I'll stop now with this list, it'll be getting to long, since I also like Rammstein, Rhapsody, Apocalyptica, ABBA, Kamelot, Machine Head, Maroon 5, The verve and Wintersun. Besides all those, i've got tons of classical stuff that I love.

Something that does need a special mention, is "Still Alive", a song sung by "GLaDOS" at the very end of the game "Portal", which is a hilarious and beautiful in a chilling way, song.

4. What is your favorite record album?

This definetily depends on my mood, but for now I'll go with "The Crusade", by Trivium.

5. What song do you think has the best music?

Oh god... Just look at question 3.

6. What song do you think has the best lyrics?

Um... I have no idea, since I don't often really listen to the lyrics. Of what I can remember, though, I'll have to go with either Fitter Happier or Exit Music by Radiohead, or Suffocating Sight or This world can't tear us apart by Trivium.

7. Who is your favorite composer?

Tschaikowsky!

8. Who is your favorite lyricist?

No idea, I don't think I have one

9. Who is your favorite performing artist?

Trivium

10. Is there any song that has ever just hit you like a brick? What was it, and why?

Many, actually. No matter what the style is, it's often because the song is incredibly sad or packed with aggression, enough to make me stop with what I'm doing. A good example would be "Exit Music" by Radiohead, which is an extremely sad song. Something else is "Pull harder on the strings of your martyr" by Trivium. That hit me like a brick because of just one single bar. That is one of the most beautiful bars I've ever heard in my life... Same goes

11. What is that one song that you just can't stand?

No idea...

12. What artist do you absolutely hate?

Morbid Angel.

13. If a group of SpiderWebbers got together to start a band, who would be in it, and what genre would they perform?

They would perform either classical or metal. If it would be classical, probably Nico and maybe myself, if it were metal... I have no idea. Maybe Kel? Tyran? Drakey? Kingy? I honestly don't know.

EDIT: This post has become a lot longer than I wanted it to become, but oh well. All I wanted to say, is that I've been to "The black Crusade" just yesterday, a concert with Shadows Fall, Arch Enemy, Dragonforce, trivium and Machine Head. Hell, I haven't had such fun for a few weeks.

[ Saturday, December 01, 2007 02:23: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Avernum 5 ? in Tech Support
Master
Member # 5977
Profile Homepage #2
I never heard of a PC running Mac OS X, but I guess it should work fine in Mac OSX, doesn't matter what the OS is running on.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Did Thralni leave? in General
Master
Member # 5977
Profile Homepage #4
I'm not a mod...

However, I did write that "dramatic" post and it's true that I hardly post here. Usually because there isn't much to post about, and why say something when there is nothing to say?

[ Tuesday, November 27, 2007 04:15: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
The Abominal Desktop Thread Continued: A New Abomination in General
Master
Member # 5977
Profile Homepage #21
quote:
Originally written by Tyranicus:

Btw, why do you have MSN Messenger, Adium, and iChat on your Dock? Do you really need all 3?
Thanks, and we talked about that. I don't really need them all through, since I can Adium for all, but MSN has some options which Adum doesn't have for the MSN stuff, and I simply like iChat's look better than Adium. Also, using them all three gives me some sense of tidiness, since I will always know who could have tried to contact me when a certain client is asking for attention. Yoy could say that each client has it's own group: MSN is mostly for school friends, Adium is for Xfire and has some poeple I hardly talk with (but it's a great spying utility if you want to know if somebody is playing a game) and iChat is for AIM and has all SW people.

Jewels: good to see I'm not the only Flight Simmer here.

[ Sunday, November 25, 2007 22:58: Message edited by: Thralni ]

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Tank Cat! in General
Master
Member # 5977
Profile Homepage #37
Just because:

IMAGE(http://www.swapmeetdave.com/Humor/Cats/CatAndMirror.jpg)

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Endeavour in General
Master
Member # 5977
Profile Homepage #4
I watched The Hick Hiker's Guide to the Galaxy movie last friday, and though I think it's by no means up to the standard that the book set, it is definitely a very funny film that becomes better after a few beers.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
The Abominal Desktop Thread Continued: A New Abomination in General
Master
Member # 5977
Profile Homepage #5
IMAGE(http://i25.photobucket.com/albums/c77/Thralni/screen-capture.jpg)

I've always used the standard preset desktop background. Just didn't feel the need to have a picture in the background to distract me from my work.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #32
quote:
Originally written by Najosz Thjsza Kjras:

Then again, what XFire does seems pretty trivial anyway, so . . .
It is pretty trivial.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #30
quote:
Originally written by Najosz Thjsza Kjras:


EDIT: One side-comment, because I don't want to make this a triple post: My original post was on-topic. It was a derisive way of saying 'why on Earth focus on making Avernum and Geneforge XFire compatible when BoE is easier to do it with, and better besides?' Thralni, your post wasn't relevant to that and I was just being trivial by dismissing it; I'm not a programmer and not qualified to discuss what you were talking about. Then again, I've made a career of dispudanding gustibus, so there you go.

Either I didn't understand what you said, or my post was all but irrelevant to what you said. Reading your post, I understood that the way you think Xfire works is like this:

"The game has to be made compatible with Xfire."

Now that is plain wrong for all I know: it's just the other way around, which is why I asked if you read my post. For if you didn't and the above is indeed how you think Xfire works, than it is your post that is mostly irrelevant.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #18
Good, that at least excludes Swahili.

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #14
quote:
Originally written by Najosz Thjsza Kjras:

I'm afraid I don't speak any Dutch.
If that's what you call Dutch, then you probably insulted the whole of Holland.

So, did I write Dutch or English in this post?

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #9
Um... Have you read my explanation of how Xfire works at all?

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00
Help make Geneforge/Avernum XFire supported! in General
Master
Member # 5977
Profile Homepage #7
quote:
Originally written by Arancaytar:

So it's basically a kind of spyware that acts with your knowledge and consent. Like last.fm, say. ;)
Yeah, actually, yes :P

--------------------
Play and rate my scenarios:

Where the rivers meet
View my upcoming scenario: The Nephil Search: Escape.
Co-designed with Nikki: El Presidente.

Give us your drek!
Posts: 3029 | Registered: Saturday, June 18 2005 07:00

Pages