Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Orgonwukh

Pages: 1 [2] 3 4 ... 17
16
The Hydlaa Plaza / Re: What's up?
« on: January 12, 2010, 11:57:58 am »
This is a bot. Member of several thousand boards.
Ligh, are you referring to Rebekka or yourself?  ::)

17
Guilds Forum / Re: [Guild] The Royal House of Purrty
« on: December 30, 2009, 09:13:13 pm »
... for some reason and hubs won't let me use his new awsome machine!  bah.  sadly I cannot convince him...
PM me if you need advice XD

18
Wish list / Re: In-game date and time (re-post)
« on: December 25, 2009, 05:43:29 pm »
This is not about discussing if the 6/1 ratio of in-game and RL time suits you. The faster in-game time is a fact. This is about how to implement it.

19
Wish list / In-game date and time (re-post)
« on: December 20, 2009, 05:16:09 pm »
This is a re-post of In-game date and time, which has been removed for unkown reasons.

I propose to compute in-game date and time based on real-life date and time. See this example application and the quick and dirty code example below.

Code: [Select]
<html><head><title>
Planeshift Time Converter
</title></head>
<body>
<center><h1>Planeshift Time Converter</h1></center>
<?php
$requestYear 
$_POST['requestYear'];
$requestMonth $_POST['requestMonth'];
$requestDay $_POST['requestDay'];
$requestHour $_POST['requestHour'];
$requestMinute $_POST['requestMinute'];

$currentTime time();

# see http://pswiki.xordan.com/index.php?title=Yliakum_Calendar

# 60/6 = 1 minute
$minute 10;
# 60*60/6 = 600 = 1 hour
$hour 600;
# 60*60*24/6 = 14400 = 1 day
$day 14400;
# 60*60*24*32/6 = 460800 = 1 month
$month 460800;
# 60*60*24*32*10/6 = 4608000 = 1 year
$year 4608000;

#We assume that 1st of January 1970 00:00:00 GMT is the beginning of year 750 Yliakum time.
$yearoffset 750# can be changed if another zero year than 1970 is desired

# to test the script with the real time uncomment the following lines
# note, however, that there is a +-3 minutes error because of the estimated duration of a year in seconds
#$minute = 60;
#$hour = 3600;
#$day = 86400;
#$month = $day * 365.25 / 12;
#$year = 60*60*24*365.24249;
#$yearoffset = 0;


$yliakumYear    floor($currentTime $year $yearoffset);
$yliakumMonth   floor(($currentTime $year) / $month) + 1;
$yliakumDay     floor(($currentTime $year $month) / $day) + 1;
$yliakumHour    floor(($currentTime $year $month $day) / $hour) + 1;
$yliakumMinute  floor(($currentTime $year $month $day $hour) / $minute) + 1;

if ((
$timestamp strtotime("$requestYear-$requestMonth-$requestDay $requestHour:$requestMinute:00")) === false) {
    
$resultYear "NA";
    
$resultMonth "NA";
    
$resultDay "NA";
    
$resultHour "NA";
    
$resultMinute "NA";
} else {
$resultYear    floor($timestamp $year $yearoffset);
$resultMonth   floor(($timestamp $year) / $month) + 1;
$resultDay     floor(($timestamp $year $month) / $day) + 1;
$resultHour    floor(($timestamp $year $month $day) / $hour) + 1;
$resultMinute  floor(($timestamp $year $month $day $hour) / $minute) + 1;
}


?>


<form action="PStime.php" method= "POST">

<table style="text-align: center; width: 1024px; margin-left: auto; margin-right: auto; background-color: rgb(128, 128, 128);" border="2" cellpadding="2" cellspacing="1">
<tbody>
<tr>
<td style="width: 100px;"><span style="font-weight: bold;"><br></span></td>
<td style="width: 50px;"><span style="font-weight: bold;">Year</span></td>
<td style="width: 50px;"><span style="font-weight: bold;">Month</span></td>
<td style="width: 50px;"><span style="font-weight: bold;">Day</span></td>
<td style="width: 50px;"><span style="font-weight: bold;">Hour</span></td>
<td style="width: 50px;"><span style="font-weight: bold;">Minute</span></td>
<td style="width: 50px;"></td>
</tr>
<tr>
<td><?php echo "Current server time" ?></td>
<td><?php echo date('Y'?></td>
<td><?php echo date('n'?></td>
<td><?php echo date('d'?></td>
<td><?php echo date('H'?></td>
<td><?php echo date('i'?></td>
</tr>
<tr>
<td><?php echo "Current Yliakum time" ?></td>
<td><?php echo $yliakumYear ?></td>
<td><?php echo $yliakumMonth ?></td>
<td><?php echo $yliakumDay ?></td>
<td><?php echo $yliakumHour ?></td>
<td><?php echo $yliakumMinute ?></td>
</tr>
<tr>
<td>Real-Life time request</td>
<td>
<input type="text" name="requestYear" size="4" value="<?php echo $requestYear ?>" />
</td>
<td>
<input type="text" name="requestMonth" size="2" value="<?php echo $requestMonth ?>" />
</td>
<td>
<input type="text" name="requestDay" size="2" value="<?php echo $requestDay ?>" />
</td>
<td>
<input type="text" name="requestHour" size="2" value="<?php echo $requestHour ?>" />
</td>
<td>
<input type="text" name="requestMinute" size="2" value="<?php echo $requestMinute ?>" />
</td>

<td><input type="submit" name="Convert" value="Convert" size="1" maxlength="1" /></td>

</tr>
<tr>
<td><?php echo "Yliakum time request result" ?></td>
<td><?php echo "$resultYear<br>" ?></td>
<td><?php echo "$resultMonth<br>" ?></td>
<td><?php echo "$resultDay<br>" ?></td>
<td><?php echo "$resultHour<br>" ?></td>
<td><?php echo "$resultMinute<br>" ?></td>
</tr>
</tbody>
</table>
<br>
<a href="http://pswiki.xordan.com/index.php?title=Yliakum_Calendar">Yliakum Calendar</a><br>

</body>

20
General Discussion / Re: Rp Rules?
« on: December 20, 2009, 04:58:07 pm »
Yes - 23 (53.5%)
No - 8 (18.6%)
Snorks - 12 (27.9%)

Only posts from people who voted for 'no' or 'snorks' until now.
I voted for 'yes', because it is a good start in my opinion. We will have to wait and see if more needs to be done.

21
General Discussion / Re: The Great inconsistency hunt is on!
« on: December 18, 2009, 03:24:03 pm »
Asking Octarch Iragdun "About Octarch" yields this...

"The Octarch of the first level is Iragdun Salikarios, who is by all accounts a wise and efficient but somewhat reclusive leader."

Talking about himself in the third person?   :whistling:
http://en.wikipedia.org/wiki/Majestic_plural ?

22
General Discussion / Re: Wipe y/n?
« on: November 18, 2009, 01:32:30 pm »
Phew, I am relieved. It already got boring at the arena and the mines. With the opening of this thread, all of a sudden the other PLers stopped grinding and mining. Now the areas are getting more crowded again.

By the way, what if Xillix lied to us when he said that the wipe will not happen soon, or what if the server and all backups suddenly burn up, or if a comet hits the earth soon?
All the grinding and mining would have been IN VAIN  :o


23
General Discussion / Re: Wipe y/n?
« on: November 09, 2009, 02:48:37 pm »
Wow! The server is up, but this discussion is still going on...
Time for my 2 trias.

I think some are forgetting how much this will SERVE rp. Getting long time plers whose idea of rp is to bully everyone verbally until a fight ensues will be gone to ez...
PLs did not leave to EZ because there is noone to bully (including myself here, PLing my EZ-char was boring without someone to fight). I think all PLers leaving the RP-server will not change a thing. Most of those who disrupt RP OOCly are ignored by RPers. They are actually gone already.

Im lazy, so I voted no.

But I think the wipe should be made right now or before the rlease of version 1.0  ::)

24
General Discussion / Re: Wipe y/n?
« on: November 07, 2009, 03:29:37 am »
I think this post is not meant to be serious.
The plebs always should be busy, you know?  ;)

25
General Discussion / Re: Sorry.. No really..
« on: November 04, 2009, 07:49:06 pm »
Welcome back!
A quote from myself:
"I now would not roleplay with the roleplayer I was a year ago."

If you agree with that, you are an elitist.

26
General Discussion / Re: Crafting Poll
« on: November 04, 2009, 07:45:04 pm »
Amazing! The poll still is open...

27
The Hydlaa Plaza / Re: Happy Birthday!! Have some cake and such.
« on: October 21, 2009, 02:58:24 pm »
Thanks for the wishes everyone!

*hopes Morla jumps out of the cake ;) *
* Orgonwukh jumps out of the cake
Happy birthday, Jonoth!
 :-*

28
Wish list / Re: Cloaks Reloaded
« on: October 13, 2009, 04:30:58 pm »
I'm afraid it is godmodding if you think that wearing a hooded cloak makes you impossible to identify. If you want to discuss further you know where to find me on IRC, I'm there most days.
It is obviously not welcome to discuss the issue here. I don't see the benefit of excluding the player community by moving the discussion to IRC.

And where does the 10 months come from? this thread is only a couple of weeks old

10 months ago, I submitted a document to the settings team.[...]

PM me if you do not have access to this document and if you want to read it.

30
In-Game Roleplay Events / Re: [OSP] Red Crystal Evening of Arts
« on: October 04, 2009, 03:57:45 am »
To get back on topic:
What were the rewards?
Were there any unique staffs or weapons among them?
 :whistling:

Pages: 1 [2] 3 4 ... 17