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!

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - mathex

Pages: [1]
1
Hey I want to allow skinning on all mobs, no matter the mobs level and my skill level. I've tried setting it in the core (everywhere with SKILL_EFFECT_SKINNING), but that didn't work. is there anywhere in the client I have to edit this or am I just editing the core in the wrong places?

2
Serverside Modding / [QUESTION] Updating MAX_RACES causes client crash
« on: February 23, 2015, 12:18:48 pm »
Hello, I've tried adding four new races, but every time I change MAX_RACES it crashes my client.

http://prntscr.com/68rxsk <- error happens when I press the Create New Character button.
Here's my Char

http://prntscr.com/68rxzi <- a picture of my ChrRaces.dbc (I heard the crash could sometimes origin from here)

http://pastebin.com/ZcaXuMcF <- This is my CharacterCreate.lua and here's where the error happens. When I change MAX_RACES to anything but 10, the client crashes. And at 10 it says "Please Update MAX_RACES" as you know..

I hope someone can help me fix this issue as it's been bothering me for a couple of hours now.

3
Okay, I have now succesfully created my custom class and it's basically done. I now just need some final advice. I have two problems.

1: The icon doesn't show up on the right when you're creating a class:

should be like:

SOLUTION TO PROBLEM 1 FOR FUTURE REFERENCES:
Go to InterfaceTARGETINGFRAMEUI-Classes-Circles.blp and edit it ;)

2: I've created 2 custom spells, both derived from Arcane Mage spells (Arcane Blast and Arcane Barrage).
The problem consist of two things, one is that there is no global cooldown on the spells, secondly there's a cooldown on the Arcane Barrage but it isn't shown "counting down" like with all other spells with cooldowns. It works with the cooldown but it isn't shown.

Thank you for checking out my thread, help is very much appreciated. :-)

4
Miscellaneous / [SOLVED] Error creating a new class
« on: August 08, 2013, 03:50:05 pm »
So I've created a new class from scratch from using both of these tutorials:
viewtopic.php?f=26&t=1840
viewtopic.php?f=26&t=3838

I looked into the code and this is where it seems to crash (player.cpp line 942)
Code: [Select]
   PlayerInfo const* info = sObjectMgr->GetPlayerInfo(createInfo->Race, createInfo->Class);
    if (!info)
    {
        TC_LOG_ERROR(LOG_FILTER_PLAYER, "Player::Create: Possible hacking-attempt: Account %u tried creating a character named '%s' with an invalid race/class pair (%u/%u) - refusing to do so.",
                GetSession()->GetAccountId(), m_name.c_str(), createInfo->Race, createInfo->Class);
return false;
    }

I'm using TrinityCore.
The new class ID is 12.

And I've stumbled into a problem. After all my attempts I still get this little error:

5
Miscellaneous / [QUESTION] Changing the name of a class
« on: April 28, 2013, 02:39:52 pm »
Hello Modcraft, I'm currently in the process of changing the name of my "custom class" which really is just an edit of the current Death Knight class. So what I ask is for you to help change the name, I've tried editing the name in the ChrClasses.dbc which currently looks like this:



Which works fine and all in-game but on the login screen and ingame it says the same thing:



Death knight. And that's what I'd like to change. So if anyone got any ideas please share them :-) Thanks for reading.

6
Miscellaneous / [QUESTION] CharacterCreate.lua Problems
« on: April 20, 2013, 11:40:42 pm »
Okay I've come to the conclusion my problem was not importing the dbc files, after doing that I have a slightly diferent problem:



Now the error I get when I enter is this:



This is my coords:
http://pastebin.com/q8AwcByM

So if anyone has a solution that'd be great! :-) Thank you all

7
Serverside Modding / [QUESTION] How to disable arena cap in cataclysm
« on: February 10, 2013, 04:22:09 pm »
Hello I want to use the conquest panel under the honor function on my low level server but I get blocked by the message that I have to be level 70. I guess I have to make a custom patch, but which DBC file to edit and where?

Pages: [1]