• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Help] how to disable extreme class ?

P

paulene03

Guest
help sir can u teach me how to disable extreme class?
 
Newbie Spellweaver
Joined
May 1, 2012
Messages
46
Reaction score
2
you mean you want to do it like ran online ph??

try the client of URO Ran their character extreme class is disabled in char creation..
 
Upvote 0
Joined
Mar 20, 2012
Messages
760
Reaction score
368
here do this...

open ur microsoft sql server management studio express>>>log-in, expand database>>> go to ranuser>>>programability>>>expand stored procedure>>>right click db.sp_extreme then modify>>> you will see this

USE [RanGame1]
GO
/****** Object: StoredProcedure [dbo].[sp_Extreme] Script Date: 08/24/2010 15:08:45 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- 必碍何 巢/咯 积己 肮荐甫 馆券茄促.
ALTER PROCEDURE [dbo].[sp_Extreme]
@nUserNum int

AS
DECLARE
@error_var int,
@rowcount_var int

SET NOCOUNT ON
Select (MSum-MS) As M, (FSum-FS) As F
From
(
Select isnull(Sum(M),0) As MSum, isnull(Sum(F),0) As FSum, isnull(Sum(MS),0) As MS, isnull(Sum(FS),0) As FS
From
(
Select ChaClass
,
Case ChaClass
When 1 Then 1<<<---0 change to zero
When 2 Then 1<<<---0 change to zero
When 256 Then 1<<<---0 change to zero
When 512 Then 1<<<---0 change to zero
Else 0
End As M
,
Case ChaClass
When 4 Then 1
When 8 Then 1
When 64 Then 1
When 128 Then 1
Else 0
End As F
,
Case ChaClass
When 16 Then
Case ChaDeleted
When 4 Then 0
Else 1
End
Else 0
End As MS
,
Case ChaClass
When 32 Then
Case ChaDeleted
When 4 Then 0
Else 1
End
Else 0
End As FS
From ChaInfo
) As t
) As tt
 
Upvote 0
Junior Spellweaver
Joined
Dec 31, 2008
Messages
142
Reaction score
6
Case ChaClass
When 1 Then 1<<<---what char?
When 2 Then 1<<<---what char?
When 256 Then 1<<<---what char?
When 512 Then 1<<<---what char?
Else 0
End As M

#or this script juz for extreme/gunner only....how about sword female,acher male...where place to disable?
 
Upvote 0
Back
Top