How to add Gold to Character:
Code:
USE [C9World]
GO
DECLARE @return_value int,
@paddMoney int
SELECT @paddMoney = 10000
EXEC @return_value = [Game].[UspAddPcMoney]
@pPcNo = 2,
@paddMoney = @paddMoney OUTPUT,
@pMaxMoney = 100000
SELECT @paddMoney as N @paddMoney'
SELECT 'Return Value' = @return_value
GO
I was using MSSQL 2008 R2
@paddMoney sets how much will be added and @pMaxMoney set the maximal per transaction so @paddMoney needs to be slightly smaller or less than @pMaxMoney.

This adds gold to the character again must log out for it to update. @paddMoney needs to say pAdd but the post keeps getting edited.
- - - Updated - - -
Add Points "Maybe Wcoins" I used it to buy cash shop items.
Code:
USE [C9World]
GO
DECLARE @return_value int,
@paddWB int
SELECT @paddWB = 100
EXEC @return_value = [Game].[UspAddPcWB]
@pPcNo = 2,
@pMaxWB = 10000,
@paddWB = @paddWB OUTPUT
SELECT @paddWB as N @paddWB'
SELECT 'Return Value' = @return_value
GO


@paddWB = 100 this is the quantity adding, @pMaxWB = 10000, Max value, @pPcNo = 2, account number again.
- - - Updated - - -
Update the Experience of the Character:
Code:
USE [C9World]
GO
DECLARE @return_value int
EXEC @return_value = [Admin].[UspUpdatePcExp]
@pPcNo = 2,
@pExp = 4400
SELECT 'Return Value' = @return_value
GO
I'm having issues when posting the code in snippets so verify that code matches the pics.