Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::Development > Archive::Database/World Building

Archive::Database/World Building Archive area for General Discussion's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-07-2003, 05:38 PM
predominant
Sarnak
 
Join Date: Jun 2003
Location: Newcastle, Australia
Posts: 73
Default Dealing with Player Petitions

I have currently 72 petitions since StudentQuest went live.

To all you fellow EQ server hosts out there, what sort of petitions have you received, and how have you dealt with them? From what I can see, most of these are server code issues, not database issues.

Cheers.

predom
__________________
PreDOMiNanT

StudentQuest 0.5.0-DR4 dedicated server. http://studentquest.newcastle.edu.au.
Reply With Quote
  #2  
Old 09-08-2003, 04:59 AM
Merth
Dragon
 
Join Date: May 2003
Location: Seattle, WA
Posts: 609
Default

I see the exact opposite. Very rarely do I get a petition about server code. Most of the time, they are "can i be a gm plz", "the giants in kael are too short", "can i be a gm plzzzzz", "how do i get aa?", "can i be a gm plzzzzzzzzzz", etc.

I stopped looking at petitions after going through several hundred and realizing they just don't help.
Reply With Quote
  #3  
Old 09-09-2003, 12:00 PM
predominant
Sarnak
 
Join Date: Jun 2003
Location: Newcastle, Australia
Posts: 73
Default

I've made StudentQuests petitions publically available.
You can see them at http://studentquest.newcastle.edu.au/petitions.php

See, thats the kinda stuff I am getting
__________________
PreDOMiNanT

StudentQuest 0.5.0-DR4 dedicated server. http://studentquest.newcastle.edu.au.
Reply With Quote
  #4  
Old 09-09-2003, 12:13 PM
kanechart
Sarnak
 
Join Date: Sep 2003
Posts: 78
Default

Quote:
Originally Posted by predominant
I've made StudentQuests petitions publically available.
You can see them at http://studentquest.newcastle.edu.au/petitions.php

See, thats the kinda stuff I am getting
Thats great ideas Tat help other servers aswell.. Are you sharing any scripts? If not no big deal but I like to use them if you are..
Thanks

Kane
Reply With Quote
  #5  
Old 09-09-2003, 01:13 PM
mattmeck
Guest
 
Posts: n/a
Default

Most of the petitions seem to be DB issues not coding issues, and a lot of stuff not working is why DR2 isnt the finished product :lol:
Reply With Quote
  #6  
Old 09-10-2003, 02:09 PM
predominant
Sarnak
 
Join Date: Jun 2003
Location: Newcastle, Australia
Posts: 73
Default

Quote:
Originally Posted by kanechart
Quote:
Originally Posted by predominant
I've made StudentQuests petitions publically available.
You can see them at http://studentquest.newcastle.edu.au/petitions.php

See, thats the kinda stuff I am getting
Thats great ideas Tat help other servers aswell.. Are you sharing any scripts? If not no big deal but I like to use them if you are..
What were you interested in?
__________________
PreDOMiNanT

StudentQuest 0.5.0-DR4 dedicated server. http://studentquest.newcastle.edu.au.
Reply With Quote
  #7  
Old 09-10-2003, 02:22 PM
kanechart
Sarnak
 
Join Date: Sep 2003
Posts: 78
Default

Quote:
Originally Posted by predominant
Quote:
Originally Posted by kanechart
Quote:
Originally Posted by predominant
I've made StudentQuests petitions publically available.
You can see them at http://studentquest.newcastle.edu.au/petitions.php

See, thats the kinda stuff I am getting
Thats great ideas Tat help other servers aswell.. Are you sharing any scripts? If not no big deal but I like to use them if you are..
What were you interested in?
Not sure 100% how your script works if it takes all patitions live off toyr sql database or if you sorta render it into a db like ever 15 min but I like if my patitions were displayed live like that.. Also any other scripts your willing share would help me and others.. If not no problem
Reply With Quote
  #8  
Old 09-11-2003, 10:35 AM
predominant
Sarnak
 
Join Date: Jun 2003
Location: Newcastle, Australia
Posts: 73
Default

Code:
    <table width="100%" cellspacing="0" cellpadding="5" border="0" align="center">
	  <tr>
	    <td class="bodylineblue">
                <?
                  $query = "";
                  $query = $query . "SELECT charname, petitiontext, senttime, charlevel ";
                  $query = $query . "FROM petitions ";
                  $query = $query . "ORDER BY senttime DESC ";

                  $link = mysql_connect("myDBhost", "myDBuser", "myDBpass")
                          or die("Connection Failed.");
                  mysql_select_db("eq")
                          or die("Database Unavailable.");
                  $result = mysql_query($query)
                          or die("Query failed.");

                  while ($row = mysql_fetch_object($result))
                  {
                    $senttime = getdate($row->senttime);
                    ?>
                    <table border="1" cellspacing="0" cellpadding="0" width="80%" align="center">
                      <tr>
                        <td><b>
                          <?= $senttime['mday'] ?> <?= $senttime['month'] 
?><?= $senttime['year'] ?> : </b><?= $senttime['hours'] ?>:<?= 
(strlen($senttime['minutes']) == 1 ? "0" . $senttime['minutes'] : 
$senttime['minutes']) ?>
                        </td>
                      </tr>
                      <tr>
                        <td>
                          From: <b><?= $row->charname ?></b> (lvl <?= $row->charlevel ?>)
                        </td>
                      </tr>
                      <tr>
                        <td>
                          <?= $row->petitiontext ?>
                        </td>
                      </tr>
                    </table>
                    <br/>
                    <?
                  }
                  mysql_free_result($result);

                ?>
		</td>
	  </tr>
	</table>
I am no master PHP programmer. This is my code for the petitions display at http://studentquest.newcastle.edu.au. If you find it interesting, sure, copy it - Just put a "Hacked together my Predominant" HTML comment in there
__________________
PreDOMiNanT

StudentQuest 0.5.0-DR4 dedicated server. http://studentquest.newcastle.edu.au.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 02:50 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3