I was wondering how I could view the transactions that players do in my server, I wanted to know if there was a script where I could just put a players name and it would show me all the transaction he or she made, or something similar to this.
(Yes, I used the search function and found nothing).
Here is a general query to see what char receive :
SELECT * FROM [PS_GameLog].[dbo].[ActionLog] where ActionType = 115 and upper(CharName) = 'CHARNAME';
And here, to see what they sell :
SELECT * FROM [PS_GameLog].[dbo].[ActionLog]where ActionType = 116 and upper(CharName) = 'CHARNAME';
If you can understant the result, so you can modify the query to only have the informations you wants to have
Hope it help you.
You can ask me more question/detail if you don't really understand
Do you not already have a Transaction Log? If yes then use this.
Code:
SELECT * FROM PS_GameLog.dbo.TransactionLog
WHERE CharID='insert charID'
SORT BY DateTime DESC
It's been months since I've looked at a Shaiya DB, but I think that's the correct location for the Transaction Log. Alternatively, you could use which has this feature plus more already implemented.
Problem with transactions 02/23/2013 - Shaiya Private Server - 1 Replies I have 4.5 server with sql2008R2 and i can't get any items from bank. Client crashes after moving items to bag(inventory). And i see errors "transaction context in use by another session". Error occurs in the procedure ...
2013-02-20 21:24:08 err=-1, Transaction context in use by another session., SQL STATE: 42000, NATIVE ERROR: 3910 (0xF46)
2013-02-20 21:24:08 ::SaveCharacter 21 Life-Stealer ret=1, qerr=-1, {?=call usp_Save_Char_Product_Item_E(2,4,2, 21,3794658521467912193, 1,2,...
Transactions ID's Finden !? Wie & Wo ? 10/16/2012 - CrossFire - 4 Replies Wie im Topic schon gesagt suche die Transactions ID's meiner ZP aufladungen :)
Um schnelle Hilfe würde ich mich freuen :)
Transactions IDs 09/14/2011 - CrossFire - 3 Replies Servus,
Wie bekomme ich die Transaktion ID meiner Paysafecard heraus?
PayPal transactions 10/21/2009 - Off Topic - 10 Replies Since i want to actually sell some characters from dekaron, for real money, i first would like to know how safe this payment method is and how it actually works
Since i do not want to get scammed...
Thanks in advance