Valhalla Server (Mounts/Trusts/PvP/Dungeons)
Re: Ultros Server
Server updated to 30150508_8 6/14/15
Re: Ultros Server
Compatible with 6/25/15 SE update, Server ip Changed 45.79.6.92
Last edited by nilas on Fri Dec 15, 2017 9:48 pm, edited 1 time in total.
Re: Ultros Server
Will be changing to a better ISP soon with much higher bandwidth
Massive Server update coming soon
Level cap increase 90
Several mission fixes
more to come as we get closer to update
Massive Server update coming soon
Level cap increase 90
Several mission fixes
more to come as we get closer to update
Re: Ultros Server
We are in the process of a major update, The Development team wants everything to be "right" before we go public again.
Re: Ultros Server Rebranding Valhalla Server
Server IP 45.79.6.92
Last edited by nilas on Fri Dec 15, 2017 9:49 pm, edited 1 time in total.
Re: Ultros Server Rebranding Valhalla Server
wow looks cool. i gotta update, but i look forward to playing tomorrow
Re: Ultros Server Rebranding Valhalla Server
Hi,
I'm building my own server, primarily for myself at the moment. Just wondering how you managed to increase Summoner Avatar damage? I'm trying to make Summoner a viable solo job for end-game. So avatars will need more HP and DEF and needs to do more damage.
I looked at Summon.lua, which I assume if for normal Avatar physical attacks? Which would indicate that each lua script for Blood Pact abilities needs to be modified individually?
Are there some simple multipliers that I can change in just one or 2 scripts?
Thanks!
I'm building my own server, primarily for myself at the moment. Just wondering how you managed to increase Summoner Avatar damage? I'm trying to make Summoner a viable solo job for end-game. So avatars will need more HP and DEF and needs to do more damage.
I looked at Summon.lua, which I assume if for normal Avatar physical attacks? Which would indicate that each lua script for Blood Pact abilities needs to be modified individually?
Are there some simple multipliers that I can change in just one or 2 scripts?
Thanks!
Re: Ultros Server Rebranding Valhalla Server
So, I backed up summon.lua and changed the settings below and whilst it didn't affect normal hits, it did increase Blood Pact : Rage damage
Can't work out which script/sql file affects avatar HP though. Pet_list.sql controls the min and max level of pets including avatars, so perhaps this is the only way to modify avatars?
hitdamage = base * dmgmod1;
subsequenthitdamage = base * dmgmodsubsequent;
if (ratio<=1) then
maxRatio = 3;
minRatio = 2;
elseif (ratio<1.6) then
maxRatio = 6;
minRatio = 5;
elseif (ratio<=1.8) then
maxRatio = 9;
minRatio = 8;
elseif (ratio<3.6) then
maxRatio = 12;
minRatio = 11;
else
maxRatio = 15;
minRatio = 14;
end
Can't work out which script/sql file affects avatar HP though. Pet_list.sql controls the min and max level of pets including avatars, so perhaps this is the only way to modify avatars?
hitdamage = base * dmgmod1;
subsequenthitdamage = base * dmgmodsubsequent;
if (ratio<=1) then
maxRatio = 3;
minRatio = 2;
elseif (ratio<1.6) then
maxRatio = 6;
minRatio = 5;
elseif (ratio<=1.8) then
maxRatio = 9;
minRatio = 8;
elseif (ratio<3.6) then
maxRatio = 12;
minRatio = 11;
else
maxRatio = 15;
minRatio = 14;
end