This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: EXP Bar to 90  (Read 2445 times)

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
EXP Bar to 90
« on: November 09, 2013, 09:20:43 am »
Ive tried to get my exp to stop at 90 using the EXP LUA guide on the modcraft forums. but i continuesly getting Corrupted FrameXML error.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Supora

  • Registred Member
  • Wiki Incarnate
  • *****
  • Posts: 143
    • View Profile
Re: EXP Bar to 90
« Reply #1 on: November 09, 2013, 10:38:40 am »
Did you use this?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #2 on: November 18, 2013, 01:21:36 am »
Quote from: "Supora"
Did you use this?
Yes
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

hyakkimaru

  • Registred Member
  • Wiki Incarnate
  • *****
  • Posts: 128
    • View Profile
    • http://mc-revolution.fr
Re: EXP Bar to 90
« Reply #3 on: November 18, 2013, 08:08:05 am »
Have you modified ReputationFrame.lua like this ?

(lines 14 to 20)

Code: [Select]
-- Hard coded =(, will need to add entries for each expansion
MAX_PLAYER_LEVEL_TABLE = {};
MAX_PLAYER_LEVEL_TABLE[0] = 60;
MAX_PLAYER_LEVEL_TABLE[1] = 70;
MAX_PLAYER_LEVEL_TABLE[2] = 90;
MAX_PLAYER_LEVEL = 0;
REPUTATIONFRAME_ROWSPACING = 23;
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #4 on: November 18, 2013, 09:25:52 am »
Quote from: "hyakkimaru"
Have you modified ReputationFrame.lua like this ?

(lines 14 to 20)

Code: [Select]
-- Hard coded =(, will need to add entries for each expansion
MAX_PLAYER_LEVEL_TABLE = {};
MAX_PLAYER_LEVEL_TABLE[0] = 60;
MAX_PLAYER_LEVEL_TABLE[1] = 70;
MAX_PLAYER_LEVEL_TABLE[2] = 90;
MAX_PLAYER_LEVEL = 0;
REPUTATIONFRAME_ROWSPACING = 23;
Yes mine says exactly that

Code: [Select]
NUM_FACTIONS_DISPLAYED = 15;
REPUTATIONFRAME_FACTIONHEIGHT = 26;
FACTION_BAR_COLORS = {
[1] = {r = 0.8, g = 0.3, b = 0.22},
[2] = {r = 0.8, g = 0.3, b = 0.22},
[3] = {r = 0.75, g = 0.27, b = 0},
[4] = {r = 0.9, g = 0.7, b = 0},
[5] = {r = 0, g = 0.6, b = 0.1},
[6] = {r = 0, g = 0.6, b = 0.1},
[7] = {r = 0, g = 0.6, b = 0.1},
[8] = {r = 0, g = 0.6, b = 0.1},
};
-- Hard coded =(, will need to add entries for each expansion
MAX_PLAYER_LEVEL_TABLE = {};
MAX_PLAYER_LEVEL_TABLE[0] = 60;
MAX_PLAYER_LEVEL_TABLE[1] = 70;
MAX_PLAYER_LEVEL_TABLE[2] = 90;
MAX_PLAYER_LEVEL = 0;
REPUTATIONFRAME_ROWSPACING = 23;

function ReputationFrame_OnLoad(self)
self:RegisterEvent("UPDATE_FACTION");
-- Initialize max player level
MAX_PLAYER_LEVEL = MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()];
--[[for i=1, NUM_FACTIONS_DISPLAYED, 1 do
_G["ReputationBar"..i.."FactionStanding"]:SetPoint("CENTER",_G["ReputationBar"..i.."ReputationBar"]);
end
--]]
end
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

deep6ixed

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 189
    • View Profile
Re: EXP Bar to 90
« Reply #5 on: November 18, 2013, 04:27:03 pm »
Did you update the server database table for xp per level?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Supora

  • Registred Member
  • Wiki Incarnate
  • *****
  • Posts: 143
    • View Profile
Re: EXP Bar to 90
« Reply #6 on: November 18, 2013, 06:27:26 pm »
Where you're got the error? And is it a higher version of ReputationFrame?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #7 on: November 19, 2013, 03:36:37 am »
Quote from: "Supora"
Where you're got the error? And is it a higher version of ReputationFrame?
I could not fine ReputationFrame in Patch-enUS-2 or Patch-enUS-2
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: EXP Bar to 90
« Reply #8 on: November 19, 2013, 06:45:00 am »
Extract all client files like i describe in tutorial part 2
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Please mark as solved if solved.
Don't ask if you could ask a question... JUST ask the Question.
You can send me also offline messages. I will answer if I get online.
Skype: project.modcraft
Discord: steff#6954

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #9 on: November 19, 2013, 04:23:46 pm »
Quote from: "Steff"
Extract all client files like i describe in tutorial part 2
Which Tut?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Mr. DK

  • Moderators
  • Model Change Addict
  • *****
  • Posts: 224
    • View Profile
Re: EXP Bar to 90
« Reply #10 on: November 19, 2013, 04:37:15 pm »
viewtopic.php?f=78&t=3381

:D Steff rages atm (for sure)
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
I am Thor! Supreme commander of the Asgard Fleet!

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #11 on: November 20, 2013, 03:02:01 am »
Quote from: "Mr. DK"
http://modcraft.io/viewtopic.php?f=78&t=3381

:D Steff rages atm (for sure)

Nope Same error again. Corrupt FrameXML erro
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Steff

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 4551
    • View Profile
Re: EXP Bar to 90
« Reply #12 on: November 20, 2013, 05:20:39 am »
Try fired t with unmodded xml.  And did you use a modded wow exe without interface check?
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Please mark as solved if solved.
Don't ask if you could ask a question... JUST ask the Question.
You can send me also offline messages. I will answer if I get online.
Skype: project.modcraft
Discord: steff#6954

Nupper

  • Registred Member
  • Creator of Worlds
  • *****
  • Posts: 339
    • View Profile
Re: EXP Bar to 90
« Reply #13 on: November 20, 2013, 05:44:56 pm »
Quote from: "Steff"
Try fired t with unmodded xml.  And did you use a modded wow exe without interface check?
yes ive done both the and "Your Game Interface Files are corrupt. Please remove your InterfaceFrameXML Folder"
« Last Edit: January 01, 1970, 01:00:00 am by Admin »