Good things to do after server setup
This is the first time I've setup a server that will run 24/7 and is open to the world. I began securing the server and made a few changes in the database, but I'm not sure if there's anything else that can be done.
What do some of you suggest be done after the server is up and running? Are there any tutorials on how to customize the server? I found the Wiz's advice on running a server years ago, and it hasn't changed. I'm not sure how many friends & family members will be playing, but I would like to make it interesting for them. Is there a "Getting started" place where it talks about how EQ all goes together, so that people can learn how to do this? That's the best way I learn, I don't need hand holding, but a helpful start is good and then I can Forrest Gump my way through the code. |
|
A few commands I have run on Anon. I'm no SQL expert but these are some of commands I ran and have collected from the forums or made on my own.
Always do a dump of the table so you restore it if you mess up. A simple solution would be to simply create a dump of just the table you wish to restore separately. You can use the mysqldump command to do so with the following syntax: mysqldump -u [user] -p[password] [database] [table] > [output_file_name].sql Then import it as normal, and it will only import the dumped table. If you have standard username password it would look like this and if you need to restore the > would go < instead. mysqldump -uroot -peqemu peq items > items.sql Code:
UPDATE items SET NoDrop = 1 WHERE NoDrop = 0; 16384 sec 8192 pri 24576 both Code:
UPDATE items SET slots = 24576 WHERE slots = 8192; *** Singing Short Sword 20542 *** Claw of the Savage Spirit 8495 *** Claw of the Savage Spirit 8496 *** Kerasian Axe of Ire 68299 *** Water Sprinkler of Nem Ankh 5532 *** Nature Walkers Scimitar 20490 *** Staff of the Serpent 10650 *** Orb of Mastery 28034 *** Celestial Fists 10652 *** Scythe of the Shadowed Soul 20544 *** Fiery Defender 10099 *** Earthcaller 20488 *** Swiftwind 20487 *** Ragebringer 11057 *** Innoruuk's Curse 14383 *** Spear of Fate 10651 *** Jagged Blade of War 10908 *** Blade of Strategy 10910 *** Blade of Tactics 10909 *** Staff of the Four 14341 *** Red Scabbard 17859 How to add a start item: Start Items id, race, class, deityid, zoneid, itemid, item_charges, gm, slot Code:
INSERT INTO starting_items VALUES (246,0,15,0,0,8496,1,0,14); Code:
UPDATE spawn2 SET respawntime = 3600 where respawntime > 3250; Code:
Pets |
One thing I don't see much on is backups. I have this bat file running twice a day. Use Windows tasks if your running a Windows server to schedule the bat file to run. It uses 7 zip to compress the files so you need that installed too.
Code:
@echo off |
Just an observation :)
set mindamg = mindamg (few typos) ? set mindmg = mindmg |
Typos makes it exciting. Who knows what heppens! Haha!
Quote:
|
Quote:
it's looking for a column that doesn't exist. :P So it's good for them to know they have edits to do, before using it. |
Quote:
|
Also noticed the maxdmg line is not present as I ran that too. Anyways, these are just for ideas of what you CAN do and use them as you wish.
|
Awesome information, thank you. Going through it right now; I'm also working on creating a registration page, with an invite code (possibly), rather than having to enter the user & password manually.
May have found somebody to GM for me, a trusted friend of 18 years who I actually met playing EQ, funny enough 18 years ago. Edit: Created shell script & cron job: script: Quote:
Quote:
# minute hour day_of_month month day_of_week (sunday=0) Quote:
|
Quote:
|
Quote:
|
Quote:
|
Quote:
Monster Summoning I II etc? |
Yes, I I'm sure I included those. Check those IDs against the pets section in the database to make sure. I'm not back to my computer until a couple days from now and I will verify this then, unless someone else checks it.
|
All times are GMT -4. The time now is 04:51 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.