[Ascent] Some Bugs & a little help

Initiate Mage
Joined
Jan 6, 2008
Messages
1
Reaction score
0
I made a ascent server and i have some problem.


When i click on a vendor from the gm island the mouse dissapear


And pleass say me how can i put a mall + vendors ..( for exemple i download something that says is it a mall .... but where i must put it :D )
(i know i am noob)
And if i am gm how can i set mai armor at max... and how can i set xp rate (i want it to be max lvl 99 and istant this lvl) ...

sorry for my bed english but i am from romania
 
Mouse Dissapear: I have no solution for this, I think it's unfixable (core bug) but not sure.

Mall & Vendors: Did you just download a .SQL file which says it's a mall? If you did you probably need to run it with SQLyog or NaviCat or whatever Database Managing Program you use. Just like you ran the character and world SQL Files.

Armor till the max: .mod armor 99999999 9999999 (or more :D)

XP Rate: XP rate is set in the ascent.conf

This is the default setting:
Code:
<Rates Health="1"
       Power1="1"
       Power2="1"
       Power3="1"
       QuestReputation="1"
       KillReputation="1"
       Honor="1"
       PvPTimer="300000"
       Compression="1"
       XP="1"
       QuestXP="1"
       RestXP="1"
       DropGrey="1"
       DropWhite="1"
       DropGreen="1"
       DropBlue="1"
       DropPurple="1"
       DropOrange="1"
       DropArtifact="1"
       DropMoney="1"
       Save="300000"
       SkillChance="1"
       SkillRate="1"
       ArenaMultiplier2x="1"
       ArenaMultiplier3x="1"
       ArenaMultiplier5x="1">

Set it to something like this:

Code:
<Rates Health="1"
       Power1="1"
       Power2="1"
       Power3="1"
       QuestReputation="1"
       KillReputation="1"
       Honor="1"
       PvPTimer="300000"
       Compression="1"
       XP="5000000"
       QuestXP="1"
       RestXP="1"
       DropGrey="1"
       DropWhite="1"
       DropGreen="1"
       DropBlue="1"
       DropPurple="1"
       DropOrange="1"
       DropArtifact="1"
       DropMoney="1"
       Save="300000"
       SkillChance="1"
       SkillRate="1"
       ArenaMultiplier2x="1"
       ArenaMultiplier3x="1"
       ArenaMultiplier5x="1">

NOTE: You might have to change other rates as well to keep 'balance'.

Hope this helps ya'.
 
Back