Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Playerworld Staff Openings (https://forums.graalonline.com/forums/forumdisplay.php?f=113)
-   -   Starting a new server! (https://forums.graalonline.com/forums/showthread.php?t=80093)

Chompy 08-14-2008 09:06 PM

Quote:

Originally Posted by Vima (Post 1414322)
What's your server called?
Show us some 'ingame' pictures :o

Door is in the designing phase I would believe :]

DrakilorP2P 08-14-2008 10:02 PM

Quote:

Originally Posted by Chompy (Post 1414325)
Door is in the designing phase I would believe :]

A little bird told me that there have been some serious work done, but that it's super secret. The plan is apparently to release all awesomeness at once in order to make us drop our monocles.

Chompy 08-14-2008 11:07 PM

Quote:

Originally Posted by DrakilorP2P (Post 1414344)
A little bird told me that there have been some serious work done, but that it's super secret. The plan is apparently to release all awesomeness at once in order to make us drop our monocles.

That would be a good idea though ;3 Releasing alot at once

excaliber7388 08-14-2008 11:31 PM

By any chance, can we make the command for the prayer be the Lord's Prayer? That way, you can't pretend you're praying to a false god, like golden calves, Shiva, Yahweh, or Kali.

Codein 08-14-2008 11:48 PM

Quote:

Originally Posted by excaliber7388 (Post 1414389)
By any chance, can we make the command for the prayer be the Lord's Prayer? That way, you can't pretend you're praying to a false god, like golden calves, Shiva, Yahweh, or Kali.

Erm, I think, I don't know though, that Yahweh is the God that you pray to when you say the lord's prayer? xD

I'm not sure though. I always assumed that the Jewish God and Christian God is the same God. However, I did hear on a documentry that Jesus once said that the God of [his time] is not the God of creation.

Umat 08-15-2008 12:15 AM

Quote:

Originally Posted by Codein (Post 1414399)
I'm not sure though. I always assumed that the Jewish God and Christian God is the same God. However, I did hear on a documentry that Jesus once said that the God of [his time] is not the God of creation.

so is the rastafarian god (Jah, short for Jahve), Jehovas Witnessess god (Jehova is a misstranslated version of Jahve, it's more like JHVH) and the islamic god too (Allah).

Codein 08-15-2008 12:24 AM

Quote:

Originally Posted by Umat (Post 1414408)
so is the rastafarian god (Jah, short for Jahve), Jehovas Witnessess god (Jehova is a misstranslated version of Jahve, it's more like JHVH) and the islamic god too (Allah).


Aye, same God, different methods xD

Umat 08-15-2008 12:27 AM

Quote:

Originally Posted by Codein (Post 1414416)
Aye, same God, different methods xD

All of those "names" means just God. Or the almighty/only god. :P

Door 08-15-2008 12:28 AM

Quote:

Originally Posted by excaliber7388 (Post 1414389)
By any chance, can we make the command for the prayer be the Lord's Prayer? That way, you can't pretend you're praying to a false god, like golden calves, Shiva, Yahweh, or Kali.

Well, that's a given. I will also enable Hail Maries for blessings and such.

Crono 08-15-2008 12:32 AM

Door I finished Rainbow Land, should I start on Route Candy now?

Codein 08-15-2008 12:46 AM

Quote:

Originally Posted by Umat (Post 1414418)
All of those "names" means just God. Or the almighty/only god. :P

I meant different methods as in different religions.

Bell 08-15-2008 02:17 AM

Quote:

Originally Posted by Door (Post 1414420)
Well, that's a given. I will also enable Hail Maries for blessings and such.

Hail Marines

DrakilorP2P 08-15-2008 02:40 AM

Quote:

Originally Posted by Chompy (Post 1414383)
That would be a good idea though ;3 Releasing alot at once

Yeah, why release in small portions and acquire feedback from the community when you can spend several months working on a server which turns out to be fundamentally broken when you finally release something?

Chompy 08-15-2008 10:31 AM

Quote:

Originally Posted by DrakilorP2P (Post 1414473)
Yeah, why release in small portions and acquire feedback from the community when you can spend several months working on a server which turns out to be fundamentally broken when you finally release something?

Door is doing that to Door's server? :oo: white text is cool :o to bad I dunno what to use this white tanned line for..

DrakilorP2P 08-15-2008 11:58 AM

Quote:

Originally Posted by Chompy (Post 1414582)
Door is doing that to Door's server? :oo:

Yeah, to minimize the risk of being discouraged. If you pursue your dream and keep on working, you'll inevitably succeed.

Quote:

Originally Posted by Chompy (Post 1414582)
white text is cool :o to bad I dunno what to use this white tanned line for..

No, it's stupid and annoying. I had to write a greasemonkey script to change the background colour because of people like you.

Chompy 08-15-2008 12:14 PM

Quote:

Originally Posted by DrakilorP2P (Post 1414584)
No, it's stupid and annoying. I had to write a greasemonkey script to change the background colour because of people like you.

share it? :(

DrakilorP2P 08-15-2008 12:58 PM

Quote:

Originally Posted by Chompy (Post 1414588)
share it? :(

PHP Code:

// ==UserScript==
// @name           OGCC
// @namespace      http://forums.graalonline.com/
// @description    Changes background color of posts.
// @include        http://forums.graalonline.com/*
// ==/UserScript==

window.addEventListener(
    
"load",
    function() {
        for (
i=0i<document.styleSheets[0].cssRules.lengthi++)
        {
            
foo document.styleSheets[0].cssRules[i];
            if (
foo.selectorText == ".alt1, .alt1Active") {
               
foo.style.backgroundColor "#ccddcc";
            }
        }
    },
    
true); 

Edit:

I'm not going to make it super-cross-platform of Internet Explorer hugging.

Door 08-15-2008 04:51 PM

Can you make it in rainbow?

DrakilorP2P 08-15-2008 05:22 PM

1 Attachment(s)
Quote:

Originally Posted by Door (Post 1414627)
Can you make it in rainbow?

PHP Code:

// ==UserScript==
// @name           OGCC
// @namespace      http://forums.graalonline.com/
// @description    Changes background color of posts.
// @include        http://forums.graalonline.com/*
// ==/UserScript==

window.addEventListener(
    
"load",
    function() {
        for (
i=0i<document.styleSheets[0].cssRules.lengthi++)
        {
            
foo document.styleSheets[0].cssRules[i];
            if (
foo.selectorText == ".alt1, .alt1Active") {
               
//foo.style.backgroundColor = "#ccddcc";
               
foo.style.background "url(http://img98.imageshack.us/img98/1931/flagtu7.gif)";
            }
        }
    },
    
true); 


Door 08-15-2008 05:34 PM

That's much too bright. How about more of a pastel rainbow?

Chompy 08-15-2008 05:46 PM

Quote:

Originally Posted by DrakilorP2P (Post 1414590)
PHP Code:

// ==UserScript==
// @name           OGCC
// @namespace      http://forums.graalonline.com/
// @description    Changes background color of posts.
// @include        http://forums.graalonline.com/*
// ==/UserScript==

window.addEventListener(
    
"load",
    function() {
        for (
i=0i<document.styleSheets[0].cssRules.lengthi++)
        {
            
foo document.styleSheets[0].cssRules[i];
            if (
foo.selectorText == ".alt1, .alt1Active") {
               
foo.style.backgroundColor "#ccddcc";
            }
        }
    },
    
true); 

Edit:

I'm not going to make it super-cross-platform of Internet Explorer hugging.

Thanks, will have to spread some more reputation first though, will rep you when I can :-)

DrakilorP2P 08-15-2008 08:55 PM

Quote:

Originally Posted by Door (Post 1414631)
That's much too bright. How about more of a pastel rainbow?

Upload a suitable image and change the URL in the script.

excaliber7388 08-15-2008 09:14 PM

Quote:

Originally Posted by Codein (Post 1414399)
Erm, I think, I don't know though, that Yahweh is the God that you pray to when you say the lord's prayer? xD

I'm not sure though. I always assumed that the Jewish God and Christian God is the same God. However, I did hear on a documentry that Jesus once said that the God of [his time] is not the God of creation.

No, those jews 'n' arabs aren't praying to my god.
Heavens, no.
Quote:

Originally Posted by Door (Post 1414420)
Well, that's a given. I will also enable Hail Maries for blessings and such.

Oh, and people can buy rosaries and crosses for better hp and defense! :o
Not that there would be people fighting people, just people fighting saracens and such.

Door 08-15-2008 10:09 PM

Quote:

Originally Posted by DrakilorP2P (Post 1414685)
Upload a suitable image and change the URL in the script.

I think it would be easier if you did it though!
Quote:

Originally Posted by excaliber7388 (Post 1414689)
Oh, and people can buy rosaries and crosses for better hp and defense! :o
Not that there would be people fighting people, just people fighting saracens and such.

Exactly! BURN THE MOORS!

DarkRenji 01-10-2009 12:10 PM

has anyone made this server yet

CharlieM 01-10-2009 05:24 PM

Door has been banned

Elizabeth 01-10-2009 05:58 PM

awww, she never got to achieve her server goals

Darlene159 01-10-2009 07:30 PM

Quote:

Originally Posted by CharlieM (Post 1455947)
Door has been banned

Quote:

Originally Posted by Elizabeth (Post 1455952)
awww, she never got to achieve her server goals

Her server goals have nothing to do with the forums.

Elizabeth 01-10-2009 08:40 PM

she made a thread about it to talk about it on the forums with these people and have people on the forums help her make the server........kind of hard to make a server without being able to use the forums

kia345 01-10-2009 08:50 PM

Quote:

Originally Posted by Elizabeth (Post 1456002)
she made a thread about it to talk about it on the forums with these people and have people on the forums help her make the server........kind of hard to make a server without being able to use the forums

She wasn't serious.

DustyPorViva 01-10-2009 08:54 PM

You don't need the forums to make a server. And as much as I like Door, I don't think she is ever going to be unbanned after what she did, and she knew it.

Rufus 01-10-2009 09:18 PM

She is sorry and would like to be unbanned now please.

Nataxo 01-10-2009 09:26 PM

Whoa, This thread was nice to read =P

I really would like to see a pure happiness server rofl.

Codein 01-10-2009 10:54 PM

I thought Door got hacked?

xXziroXx 01-10-2009 11:01 PM

Quote:

Originally Posted by Codein (Post 1456027)
I thought Door got hacked?

Nah, PMS.


All times are GMT +2. The time now is 07:14 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.