Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Shaiya > Shaiya Private Server
You last visited: Today at 13:05

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



To Private Server administrators/DBA

Discussion on To Private Server administrators/DBA within the Shaiya Private Server forum part of the Shaiya category.

Reply
 
Old   #1
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
To Private Server administrators/DBA

Hello community,

This post is to gather some information that I am needing to know right now, the question is simple, can you -administrators/GM/database administrators- let me know which are the most used scripts you all use on your daily tasks on the database?

With this I mean, for example that you say "Ban an account/IP ban someone", this with all the ones you use the most.

Hopefully I will get all the information I am needed by now, and in the case I need some further information I will let you all know.

Gathered so far:

Accounts Characters Items Guilds Mobs Logs
Give Points Stat Pad check
Look for account GM Enchants  
Look for IP GM Links  
Password Change Look for Toon  
Character Resurrection  
Remove Guild Penalty  
Change Name  
 
 
 
 
JohnHeatz is offline  
Old 08/03/2012, 19:16   #2


 
elite*gold: 6
Join Date: Oct 2011
Posts: 914
Received Thanks: 421
Every 12h Database Backup
Everyday Stadpadder Search
and DP Give Querie

Those 3 Scripts im using mostly
thetruestarr1337 is offline  
Thanks
1 User
Old 08/03/2012, 21:19   #3
 
elite*gold: 0
Join Date: May 2012
Posts: 95
Received Thanks: 56
GM Enchants

SELECT TOP (20000000) CharID, ItemID, Type, TypeID, Bag, Craftname
FROM CharItems
WHERE (CharID = ???) AND (Bag = ?)

OR

SELECT TOP (20000000) UserUID, ItemID, Type, TypeID, Slot, Craftname, Del
FROM UserStoredItems
WHERE (UserUID = ???) AND (Slot < ?)
<------ i have used the < sign as we do our Enchants from WH with Forum posts

USE PS_UserData;
UPDATE Users_Master
SET Point = (Point + ?)
WHERE UserID = '?'


the above can have Gems included too if you do GM links

these are probably our most used scripts.
[Boss]FemmeFatale is offline  
Thanks
1 User
Old 08/03/2012, 21:36   #4
 
STIV123's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 216
Received Thanks: 127
SELECT * FROM PS_Gamedata.dbo.Chars WHERE CharName='charname'

SELECT * FROM PS_UserData.dbo.Users_Master WHERE UserID='UserID'

SELECT * FROM PS_GameLog.dbo.actionlog WHERE CharName='charname'


SELECT * FROM PS_UserData.dbo.Users_Master WHERE UserIp='IPHere'

This what i use when i server restart: UPDATE PS_UserData.dbo.Users_Master SET Leave = 0

I use this scripts most.
STIV123 is offline  
Thanks
1 User
Old 08/03/2012, 22:43   #5
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
I don't need the script itself, just what they do, still wouldn't say no if you post the full script though.

Thanks for the information so far, hopefully I will be able to gather the information I am needing soon.

Update

I have added a table containing what I see could be more used from all the information given, will be updating every time someone provides any query/script
JohnHeatz is offline  
Old 08/06/2012, 16:37   #6
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
Wouldn't like to not get any more replies in here, if there is any script/query that you think is useful and something that is used on "daily tasks" let me know
JohnHeatz is offline  
Old 08/07/2012, 00:03   #7
 
elite*gold: 0
Join Date: Oct 2011
Posts: 103
Received Thanks: 63
there is also the toon res,
_-Phoenix-_ is offline  
Thanks
1 User
Old 08/07/2012, 00:14   #8
 
STIV123's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 216
Received Thanks: 127
Remove Guild Penalty
Password Change
Name Change
Script for deleteing items from invertory, WH, GWH. ^
STIV123 is offline  
Thanks
1 User
Old 08/07/2012, 16:37   #9
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
Haven't thought about deleting items from inventory, how often do you use that script?
JohnHeatz is offline  
Old 08/13/2012, 08:15   #10
 
[Admin]Snuggle's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 942
Received Thanks: 1,066
This thread needs a...
-Snuggle Bump- >.>

(hell yea I'm naming my own bumps after myself..got an issue with it?)
[Admin]Snuggle is offline  
Thanks
2 Users
Old 10/09/2012, 05:13   #11
 
JohnHeatz's Avatar
 
elite*gold: 150
Join Date: Apr 2010
Posts: 9,739
Received Thanks: 8,977
Let's bump this thread, more answers would be greatly appreciated.

Let's think about every important script you all would like to have ready to be used for any circumstance; thinking about:
  • Accounts
  • Characters
  • Guilds
  • Mobs
  • Items
  • Logs

Let's see if I can get some more replies in here
JohnHeatz is offline  
Old 10/09/2012, 05:22   #12
 
[Admin]Snuggle's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 942
Received Thanks: 1,066
Checking for corrupt GMs would be a good one. o.o
[Admin]Snuggle is offline  
Thanks
1 User
Old 10/09/2012, 08:36   #13
 
TeddyBear94's Avatar
 
elite*gold: 10
Join Date: May 2012
Posts: 1,857
Received Thanks: 2,627
char change

deleating duped items with originals

tag adding

search charname with inventory infos


having lapis linked wich got a special ID ( this lapis are on my server 31 + and i use that to check if some1 used a prog to link them in a lower gear)


ip bann


that are my most used quiery´s
TeddyBear94 is offline  
Thanks
2 Users
Old 10/09/2012, 13:46   #14
 
RebeccaBlack's Avatar
 
elite*gold: 0
Join Date: Sep 2010
Posts: 520
Received Thanks: 1,286
I have a function I use (named "BackupDB") that will backup any and all databases when executed (apart from the sys databases). Quite useful for a python script I threw together that backs everything up (including server files), makes a RAR archive and uploads it.

A simple query to check GM commands (bit different since I log them to a different table, same as kills)

I can't think of others offhand, maybe later.
RebeccaBlack is offline  
Thanks
1 User
Old 10/09/2012, 15:34   #15
 
STIV123's Avatar
 
elite*gold: 0
Join Date: Apr 2011
Posts: 216
Received Thanks: 127
There are also:

Script for checking drops: Example, you wanna check what drops under grade 02, and runnin the script will show you what all Items drop from It. It's what I use sometimes to search the not used ones.


Script for checking logs, action type.

Quote:
Haven't thought about deleting items from inventory, how often do you use that script?
Just seen this that you asked me before, lol. Anyway, well not really often, but let's say some of your staff quits or you fire him, you would want to remove he's name changes stones or messages to server, so you would just type ItemID and CharID, execute and done. that was an example.

There Is script for rerroll as well.

SELECT CharName, ActionTime, Text1
FROM PS_GameLog.dbo.ActionLog
WHERE ActionType = 107 and charname = 'charname' This would be IP checker..
STIV123 is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
Administrators please move discussion
09/08/2011 - WarRock Hacks, Bots, Cheats & Exploits - 0 Replies
http://www.elitepvpers.com/forum/warrock/1422777-v ip-hax-pubblico-d3d-vixbox-tiomasos.html Administrators please move discussion!!!
For the ECSRO server administrators!
05/17/2008 - SRO Private Server - 4 Replies
Dear Admins! I was wondering what do you guys do with money you gain from silk,gold...etc. If im right there is now 1000 slot on the server.And 500 ppl buys silk,gold,sp... for 5 dollar=2500$/month or week.It would be very nice the slot will be increased to 2000-3000 slots.I found a server enough performance.See it The Dell Online Store: Build Your System You can easyli affordthis prize.More slot,more ppl,more silk,gold...etc buyer. Ps:Sry for my english i never learnd this...
Administrators plz take a look
05/10/2008 - Metin2 - 1 Replies
ok so heres the thing...i found a exp hack program but cudnt run it coz its rigged with a backdoor trojan and still dont know if it works..but i do know that in order to hack server side codes u neet to have a backdoor and it also tries to modify a file that..i think is patchw32.dll plz take a look at this program and tell me if its legit or wether i shud just delete it i have uploaded it to a website and given the link below: Metin2 Exp Hack.rar thnx a lot in advance and looking forward...



All times are GMT +2. The time now is 13:05.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.