Bugs in Antrix. 2.1.1 Server

Newbie Spellweaver
Joined
Apr 7, 2005
Messages
42
Reaction score
0
Hi, i open a server with antrix server 2.1.1. with Chaos Repack V1 (and i update the sql adding new content in *.sql files attached in posts recents).

Bugs:

Draeneis can speak all languages in the game (troll, thauraho, thalassian, etc...).

In the star zone (Eversong Woods) there are missions (quests) that they give you 92 silver (much for has level 1).

When i die and after resurrect (not if it concerns this) the boot is hostil and attack me (is very incomodous).

Can anyone help me please?

Thanks!

P.S: Sorry for my English i am a Spanish user.
 
Remove the language skills from the skills template so each race only has common and their own. Antrix templates give your character ALL languages.


Method 1: As for quests, what I did for a temporary fix was make a scale table, where level 1 quests gives 30 copper + 100 exp, and it goes up by level. And excluded quests that dont give xp or money.

The only down side is quests that are suppose to give more or less dont.



Method 2: But you can make your own query for a quick fix like this:

Code:
UPDATE quests SET RewMoney = '30' WHERE MinLevel > '1' AND RewMoney > '8000';

This way the quests that are level 1 and give more than 80 silver will be set to 30 copper. You do that for every single level, and make your own query since there are many bugged quests from level 1 to 30 that give like 90+ silver.

I attached my own quest fix if you want it, its not perfect, but its better than bugs that can be exploited. It also fixes any other quests that give 1000 copies of the same item because someone input the item ID into the item count field instead (idiot).


Your third question I dont quite understand, do you mean the spirit healer aggros when you die? Or what.
 

Attachments

Back