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.


Messages - Vision

Pages: [1] 2
1
"Retro-Porting" / Re: [RELEASE] Wod Models [4.3.4]
« on: February 03, 2015, 08:58:54 pm »
Nice release and on 3.3.5a? :)

2
Level Design / Re: Texture Map Error
« on: October 29, 2014, 08:53:05 pm »
Thanks guys! :)

The fix with Noggit SDL 1.2  :)

Greetings

Vision

3
Level Design / Re: Texture Map Error
« on: October 28, 2014, 08:23:54 pm »

4
Level Design / Texture Map Error
« on: October 26, 2014, 04:25:30 pm »
Hey,

I was just as my texturing Texture White was and my Noggit has closed. When I wanted to connect with the map again crashed again and again Noggit etc

7761 - (MapTile.cpp:53): Opening tile 2, 6 ("WorldMapsMenariaMenaria_2_6.adt") from disk.
7864 - (errorHandling.h:64): [Error] There was an exception of type "SIGABRT"
"Abnormal termination, such as instigated by the abort function. (Abort.)".
Please excuse the inconvenience. You may want to report this error including the log to the developers.

7865 - (StackWalker.cpp:1133): [Error] OS-Version: 6.1.7601 (Service Pack 1) 0x300-0x1
7924 - (StackWalker.cpp:1133): [Error] 0106FA3C (noggit): (filename not available): (function-name not available)
7924 - (StackWalker.cpp:1133): [Error] 0101009C (noggit): (filename not available): (function-name not available)
7924 - (StackWalker.cpp:1133): [Error] 0F113254 (MSVCR110): (filename not available): abort
7925 - (StackWalker.cpp:1133): [Error] 010846C0 (noggit): (filename not available): (function-name not available)
7925 - (StackWalker.cpp:1133): [Error] 767F0303 (kernel32): (filename not available): GetProfileStringW
7925 - (StackWalker.cpp:1133): [Error] 77DE74FF (ntdll): (filename not available): RtlKnownExceptionFilter
7925 - (StackWalker.cpp:1133): [Error] 77DA9F45 (ntdll): (filename not available): RtlInitializeExceptionChain

I hope anyone can help me..

5
Miscellaneous / Re: TC Error new Custom Race.
« on: October 16, 2014, 10:22:21 am »
haha okay yea i see it ..Thanks :)  Solved! :)

6
Miscellaneous / Re: TC Error new Custom Race.
« on: October 16, 2014, 10:03:34 am »
// Race value is index in ChrRaces.dbc
enum Races
{
    RACE_NONE               = 0,
    RACE_HUMAN              = 1,
    RACE_ORC                = 2,
    RACE_DWARF              = 3,
    RACE_NIGHTELF           = 4,
    RACE_UNDEAD_PLAYER      = 5,
    RACE_TAUREN             = 6,
    RACE_GNOME              = 7,
    RACE_TROLL              = 8,
    RACE_GOBLIN             = 9,
    RACE_BLOODELF           = 10,
    RACE_DRAENEI            = 11,
    RACE_FEL_ORC            = 12, // H
    //RACE_NAGA               = 13,
    RACE_BROKEN             = 14, // Worgen A
    //RACE_SKELETON           = 15,
    RACE_VRYKUL             = 16, // Pandaren A/H
    //RACE_TUSKARR            = 17,
    //RACE_FOREST_TROLL       = 18
    RACE_TAUNKA             = 19,
    //RACE_NORTHREND_SKELETON = 20,
    //RACE_ICE_TROLL          = 21
};

// max+1 for player race
#define MAX_RACES         20

#define RACEMASK_ALL_PLAYABLE
    ((1<<(RACE_HUMAN-1))   |(1<<(RACE_ORC-1))          |(1<<(RACE_DWARF-1))   |
     (1<<(RACE_NIGHTELF-1))|(1<<(RACE_UNDEAD_PLAYER-1))|(1<<(RACE_TAUREN-1))  |
     (1<<(RACE_GNOME-1))   |(1<<(RACE_TROLL-1))        |(1<<(RACE_BLOODELF-1))|
     (1<<(RACE_DRAENEI-1)) |(1<<(RACE_BROKEN-1))       |(1<<(RACE_RACE_GOBLIN-1))|
    (1<<(RACE_FEL_ORC-1)) |(1<<(RACE_VRYKUL-1))      |(1<<(RACE_RACE_TAUNKA-1)))
   
   

#define RACEMASK_ALLIANCE
    ((1<<(RACE_HUMAN-1)) | (1<<(RACE_DWARF-1)) | (1<<(RACE_NIGHTELF-1)) |
     (1<<(RACE_GNOME-1)) | (1<<(RACE_DRAENEI-1)) | (1<<(RACE_BROKEN-1)) |
    (1<<(RACE_TAUNKA-1))| (1<<(RACE_VRYKUL-1)))

#define RACEMASK_HORDE RACEMASK_ALL_PLAYABLE & ~RACEMASK_ALLIANCE

// Class value is index in ChrClasses.dbc
enum Classes
{
    CLASS_NONE          = 0,
    CLASS_WARRIOR       = 1,
    CLASS_PALADIN       = 2,
    CLASS_HUNTER        = 3,
    CLASS_ROGUE         = 4,
    CLASS_PRIEST        = 5,
    CLASS_DEATH_KNIGHT  = 6,
    CLASS_SHAMAN        = 7,
    CLASS_MAGE          = 8,
    CLASS_WARLOCK       = 9,
    CLASS_DEMON_HUNTER           = 10,
    CLASS_DRUID         = 11
};

// max+1 for player class
#define MAX_CLASSES       13

#define CLASSMASK_ALL_PLAYABLE
    ((1<<(CLASS_WARRIOR-1))|(1<<(CLASS_PALADIN-1))|(1<<(CLASS_HUNTER-1))|
    (1<<(CLASS_ROGUE-1))  |(1<<(CLASS_PRIEST-1)) |(1<<(CLASS_SHAMAN-1))|
    (1<<(CLASS_MAGE-1))   |(1<<(CLASS_WARLOCK-1))|(1<<(CLASS_DRUID-1)) |
    (1<<(CLASS_DEATH_KNIGHT-1))|(1<<(CLASS_DEMON_HUNTER-1)))

7
Miscellaneous / TC Error new Custom Race.
« on: October 16, 2014, 09:45:33 am »
Hey guys,

i become this error...

 79%] Built target scripts
/home/server_335/core/src/server/game/Achievements/AchievementMgr.cpp: In member                         function ‘bool AchievementCriteriaData::IsValid(const AchievementCriteriaEntry*                        )’:
/home/server_335/core/src/server/game/Achievements/AchievementMgr.cpp:110:70: er                        ror: ‘RACE_RACE_GOBLIN’ was not declared in this scope
compilation terminated due to -Wfatal-errors.

Newest TC Core Version.

8
"Retro-Porting" / Re: [RELEASE] some WoD m2s wmos "converted"to 3.3.5a
« on: September 27, 2014, 10:28:08 am »
Can u show us, how to convert items from WOD to WOTLK? :)

Its a nice patch thank for share it

Vision

9
Noggit / Re: Noggit Start Error
« on: August 01, 2014, 05:58:01 pm »

10
Noggit / Noggit Start Error
« on: August 01, 2014, 02:24:40 am »
13106 - (errorHandling.h:64): [Error] There was an exception of type "SIGABRT"
"Abnormal termination, such as instigated by the abort function. (Abort.)".
Please excuse the inconvenience. You may want to report this error including the log to the developers.

I become this error when i open my map in noggit.... Noggit is crashed.

Its the actually version!

11
Showoff - what you are working on / Re: WIP - Nazeran - Phoenix-WoW
« on: July 31, 2014, 02:08:18 pm »



12
Showoff - what you are working on / Re: WIP - Nazeran - Phoenix-WoW
« on: July 30, 2014, 12:20:14 am »







13
Showoff - what you are working on / Re: WIP - Nazeran - Phoenix-WoW
« on: July 30, 2014, 12:16:29 am »







14
Showoff - what you are working on / Showoff - Nazeran - Phoenix-WoW
« on: July 29, 2014, 04:26:44 pm »
Nazeran, the new Content after 3.3.5a. Its a part of a big Expansion of Phoenix-WoW.

More is coming soon ;)


















The City, becomes more details! :)

Greetings

Vision

15
Noggit / Re: [Start-up Error] Microsoft Visual Studio Runtime
« on: July 27, 2014, 10:49:50 pm »
the same problem @threadstarter

Pages: [1] 2