[Help]I'm running Mu Server 1.00.16 BETA 24 by luciano and i need some help with cfg

Status
Not open for further replies.
Initiate Mage
Joined
Nov 5, 2007
Messages
3
Reaction score
0
Hello , I'm running mu server 1.00.16 by luciano beta 24 server.. and i'm having some problems with my configurations..
when some1 creates a charrecter 300 level up points are added...how to switch that fing off?
and 1more i cant move with my "m" button in the game.. how to switch that fing on :D ... will be happy if some1 could help me :wounded2:
 
Hello , I'm running mu server 1.00.16 by luciano beta 24 server.. and i'm having some problems with my configurations..
when some1 creates a charrecter 300 level up points are added...how to switch that fing off?
and 1more i cant move with my "m" button in the game.. how to switch that fing on :D ... will be happy if some1 could help me :wounded2:

Run this script and your done :)!

PHP:
CREATE TRIGGER [Restrict_IntLUP] ON [dbo].[Character] 
after Insert 
as 
Update [Character] set [Character].LevelUpPoint=0
From Inserted 
Where Inserted.LevelUpPoint=300 and 
[Character].accountid=inserted.accountid 
and [Character].name=inserted.name
 
Upvote 0
Run this script and your done :)!

PHP:
CREATE TRIGGER [Restrict_IntLUP] ON [dbo].[Character] 
after Insert 
as 
Update [Character] set [Character].LevelUpPoint=0
From Inserted 
Where Inserted.LevelUpPoint=300 and 
[Character].accountid=inserted.accountid 
and [Character].name=inserted.name

orrrrrrrrrrrrrrrrr

Open Enterprise Manager -> Go to your MuOnline Database -> Store Procedures -> Right Click WZ_CreateCharacter then Properties....

Look for:
INSERT INTO dbo.Character(AccountID, Name, cLevel, LevelUpPoint, Class, Strength, Dexterity, Vitality, Energy, Inventory,MagicList,
Life, MaxLife, Mana, MaxMana, MapNumber, MapPosX, MapPosY, MDate, LDate, Quest, DbVersion, Leadership,money )
SELECT @AccountID As AccountID, @Name As Name, Level, 300, @Class As Class,
Strength, Dexterity, Vitality, Energy, Inventory,MagicList, Life, MaxLife, Mana, MaxMana, MapNumber, MapPosX, MapPosY,
getdate() As MDate, getdate() As LDate, Quest, DbVersion, Leadership,200000
FROM DefaultClassType WHERE Class = @Class

change 300 to 0 to get rid of points
 
Upvote 0
Status
Not open for further replies.
Back