- Joined
- Apr 30, 2007
- Messages
- 11
- Reaction score
- 0
How do I make my clan Grade 3 or above?
delete currentuser set
exec imbacodermyst
exec otonpsimgesi
exec np_icon
exec Rank_Knights
exec krallistesi_olustur
exec imbacodermyst
exec otonpsimgesi
exec np_icon
exec Rank_Knights
MANUAL CLAN GRADE : You bring your server down, execute the code below in a query, and bring it up.
AUTO CLAN GRADE : Bring down your server down, add the code below to your Account_Logout procedure, hit execute, and bring it up.Code:delete currentuser set exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights exec krallistesi_olustur
REMEMBER! You need at least 134k or 144k(I forgot) NP to get grade 3 at least. So, make sure you set your NP column(Loyalty) in the USERDATA column to desired amount before you clan grade.Code:exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights
MANUAL CLAN GRADE : You bring your server down, execute the code below in a query, and bring it up.
Code:delete currentuser set exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights exec krallistesi_olustur
AUTO CLAN GRADE : Bring down your server down, add the code below to your Account_Logout procedure, hit execute, and bring it up.
Code:exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights
REMEMBER! You need at least 134k or 144k(I forgot) NP to get grade 3 at least. So, make sure you set your NP column(Loyalty) in the USERDATA column to desired amount before you clan grade.
MANUAL CLAN GRADE : You bring your server down, execute the code below in a query, and bring it up.
Code:delete currentuser set exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights exec krallistesi_olustur
AUTO CLAN GRADE : Bring down your server down, add the code below to your Account_Logout procedure, hit execute, and bring it up.
Code:exec imbacodermyst exec otonpsimgesi exec np_icon exec Rank_Knights
REMEMBER! You need at least 134k or 144k(I forgot) NP to get grade 3 at least. So, make sure you set your NP column(Loyalty) in the USERDATA column to desired amount before you clan grade.
USE [KN_online]
GO
/****** Object: StoredProcedure [dbo].[ACCOUNT_LOGOUT] Script Date: 09/30/2008 23:23:54 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE [dbo].[ACCOUNT_LOGOUT]
@AccountID varchar(21),
@nRet smallint OUTPUT
AS
BEGIN TRAN
DELETE FROM CURRENTUSER WHERE strAccountID = @AccountID
EXEC RANK_KNIGHTS
EXEC UPDATE_PERSONAL_RANK
EXEC USER_KNIGHTS_RATING_UPDATE
EXEC UPDATE_MANNERPOINT_RANK
COMMIT TRAN
SET @nRet = 1