View Single Post
  #1  
Old 05-09-2010, 10:07 PM
Goblin Wizard Goblin Wizard is offline
Approved Member
 
Join Date: Oct 2008
Posts: 508
Default HINT - Not enough experience points

Hint for people who complains about not enough experience gains.
Look for ..\Data\Scripts\include\LevelUp.script file. Inside you'll find lines:
Quote:
if (GetPlayerQuestState() ~= TRUE) then
primaryCoeff = primaryCoeff * 0.1;
end;
It means that you get only 10% of normal exp when you kill npc's outside the storyline. IMO it's not fair so you can disable these lines like this:
Quote:
--if (GetPlayerQuestState() ~= TRUE) then
--primaryCoeff = primaryCoeff * 0.1;
--end;
or simply change 0.1 modifier to 1 so you'll get normal/base exp all the time.

Last edited by Goblin Wizard; 05-10-2010 at 07:45 AM.
Reply With Quote