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 - Christoffel

Pages: [1]
1
Resources and Tools / Re: [FORGE] Icon maker
« on: June 22, 2012, 06:35:19 pm »
Icons made ​​by me:









2
Resources and Tools / [FORGE] Icon maker
« on: June 22, 2012, 04:44:04 pm »
If someone needs an icon, has no time for it then writes me a PM and I will produce an icon.

Of course icons for World of Warcraft :!:
Spells, armor, weapons ...

 :idea: It will take a while until it's finished, so please be patient  :idea:

3
PyModelEditor / Re: [TOOL] PyModelEditor
« on: June 10, 2012, 08:35:41 pm »
I can not run on my operating system: (


 
ImportError: DLL load failed:% 1 is not a valid Win32 application

4
Showoff - what you are working on / [SHOWOFF] Tentacle Queen
« on: June 10, 2012, 07:55:34 pm »
Here is my third model  :D
The model I get so down slowly, but the textures look really bad  :(

Front

Side

Back

5
Showoff - what you are working on / [SHOWOFF] Molten Stonebreaker
« on: June 10, 2012, 01:31:46 pm »
Here is my second model that I have modeled in 3ds max, using several models from World of Warcraft  :)
I would like to embed my models in the game but it does not work   :cry:

Here are some pictures of my model:
Front

Side

Back

6
Modelling and Animation / Re: [PROBLEM] Model is not displayed.
« on: June 07, 2012, 10:49:02 am »
I've been working all the time in this model. I can not get on it what I did wrong. (I've uploaded it here
http://fbe.am/81e
I hope one of you would do it myself and write an explanation of what I did wrong I would be very grateful

7
Modelling and Animation / [PROBLEM] Model is not displayed.
« on: June 05, 2012, 09:37:51 pm »
I started a few weeks to modify World of Warcraft.

I started a club in the new 3ds Max 2013 to sculpt.
My first model  :D



I've followed all the steps that are in the Model Export Tutorial.

Here is my problem in World of Warcraft and the World of Warcraft Model Viewer is my model is not shown. I use the tool: 3dstom2



Perhaps someone knows can be due to what?
Thanks in advance :)

8
Miscellaneous / Re: [HELP] Login Screen, Need Help !
« on: May 12, 2012, 01:31:49 pm »
I got another Problem, i want to delete Races and Classes from wow.

I got this error Message:



The files and CharacterCreate.Lua CharacterCreate.xml, CharRaces.dbc, CharClasses I have all been processed:

CharCreate.lua

MAX_RACES = 4;
MAX_CLASSES_PER_RACE = 4;

CharCreate.xml

Race Buttons:

Code: [Select]

<CheckButton name="CharacterCreateRaceButton1" inherits="CharacterCreateRaceButtonTemplate" id="1">
<Anchors>
<Anchor point="TOP" relativePoint="TOP" x="-50" y="-61"/>
</Anchors>
</CheckButton>
<CheckButton name="CharacterCreateRaceButton2" inherits="CharacterCreateRaceButtonTemplate" id="2">
<Anchors>
<Anchor point="TOPRIGHT" relativeTo="CharacterCreateRaceButton2" relativePoint="TOPRIGHT" x="1" y="1"/>"/>
</Anchors>
</CheckButton>

Class Buttons:

Code: [Select]
<CheckButton name="CharacterCreateClassButton1" inherits="CharacterCreateClassButtonTemplate" id="1">
<Anchors>
<Anchor point="TOP" x="-90" y="-456"/>
</Anchors>
</CheckButton>
<CheckButton name="CharacterCreateClassButton2" inherits="CharacterCreateClassButtonTemplate" id="2">
<Anchors>
<Anchor point="LEFT" relativeTo="CharacterCreateClassButton1" relativePoint="RIGHT" x="6" y="0"/>
</Anchors>
</CheckButton>
<CheckButton name="CharacterCreateClassButton3" inherits="CharacterCreateClassButtonTemplate" id="3">
<Anchors>
<Anchor point="LEFT" relativeTo="CharacterCreateClassButton2" relativePoint="RIGHT" x="6" y="0"/>
</Anchors>
</CheckButton>
<CheckButton name="CharacterCreateClassButton4" inherits="CharacterCreateClassButtonTemplate" id="4">
<Anchors>
<Anchor point="LEFT" relativeTo="CharacterCreateClassButton3" relativePoint="RIGHT" x="6" y="0"/>
</Anchors>
</CheckButton>
[/spoiler]

9
Miscellaneous / [HELP] Login Screen, Need Help !
« on: May 08, 2012, 03:16:31 pm »
I have a problem with a new function, and indeed it is to save your password.

I'm changing it all the time the lines of code, but I can not get out

I get this error message all the time



Here is my code:


[spoiler:3p32k7q5]AccountLogin.xml

AccountLoginPasswordEdit
Code: [Select]
<EditBox name="AccountLoginPasswordEdit" letters="16" password="1">
<Size x="200" y="35"/>
<Anchors>
<Anchor point="BOTTOM">
<Offset>
<AbsDimension x="-330" y="600"/>
</Offset>
</Anchor>
</Anchors>
<Layers>
<Layer level="BACKGROUND">
<FontString name="$parentFill" inherits="GlueFontDisableSmall" justifyH="LEFT" justifyV="MIDDLE" text="ENTER_PASS">
<Anchors>
<Anchor point="CENTER" relativePoint="CENTER">
<Offset>
<AbsDimension x="0" y="3"/>
</Offset>
</Anchor>
</Anchors>
</FontString>
</Layer>
</Layers>
<Backdrop bgFile="InterfaceTooltipsUI-Tooltip-Background" edgeFile="InterfaceGluesCommonGlue-Tooltip-Border" tile="true">
<BackgroundInsets>
<AbsInset left="10" right="5" top="4" bottom="9"/>
</BackgroundInsets>
<TileSize>
<AbsValue val="16"/>
</TileSize>
<EdgeSize>
<AbsValue val="16"/>
</EdgeSize>
</Backdrop>
<Scripts>
<OnTabPressed>
if ( AccountLoginTokenEdit:IsShown() ) then
AccountLoginTokenEdit:SetFocus();
else
AccountLogin_FocusAccountName();
end
</OnTabPressed>
  <OnEscapePressed>
AccountLogin_Exit();
</OnEscapePressed>
<OnEnterPressed>
if ( TOSFrame:IsShown() ) then
return;
end
AccountLogin_Login();
</OnEnterPressed>
<OnEditFocusLost>
self:HighlightText(0, 0);
</OnEditFocusLost>
<OnEditFocusGained>
self:HighlightText();
</OnEditFocusGained>
<OnTextChanged>
local Password = GetSavedPassword();
if ( Password ~= "" and Password ~= self:SetText("") ) then
SetSavedPassword("");
AccountLoginSavePassword:SetChecked(0);
end
if ( self:SetText("") ~= "" ) then
AccountLoginPasswordEditFill:Hide();
else
AccountLoginPasswordEditFill:Show();
end
</OnTextChanged>
</Scripts>
<FontString inherits="GlueEditBoxFont"/>
<TextInsets>
<AbsInset left="12" right="5" bottom="5"/>
</TextInsets>
</EditBox>
AccountLoginSavePassord NEW FUNCTION
Code: [Select]
<CheckButton name="AccountLoginSavePassword">
<Size>
<AbsDimension x="20" y="20"/>
</Size>
<Anchors>
<Anchor point="RIGHT" relativeTo="AccountLoginSavePasswordText" relativePoint="LEFT">
<Offset>
<AbsDimension x="0" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnLoad>
if ( GetSavedPassword() ~= "" ) then
self:SetChecked(1);
else
self:SetChecked(0);
end
</OnLoad>
<OnClick>
if ( self:GetChecked() ) then
PlaySound("igMainMenuOptionCheckBoxOff");
else
PlaySound("igMainMenuOptionCheckBoxOn");
end
</OnClick>
</Scripts>
<NormalTexture file="InterfaceButtonsUI-CheckBox-Up"/>
<PushedTexture file="InterfaceButtonsUI-CheckBox-Down"/>
<HighlightTexture file="InterfaceButtonsUI-CheckBox-Highlight" alphaMode="ADD"/>
<CheckedTexture file="InterfaceButtonsUI-CheckBox-Check"/>
<DisabledCheckedTexture file="InterfaceButtonsUI-CheckBox-Check-Disabled"/>
</CheckButton>




AccountLogin.lua

GetSavedPassword NEW FUNCTION
Code: [Select]
local Password = GetSavedPassword();

if AccountLoginAccountEdit:SetText("") == "" then AccountLoginAccountEdit:SetText(accountName); end
--AccountLoginPasswordEdit:SetText("");
AccountLoginTokenEdit:SetText("");
if ( Password and Password ~= "" and GetUsesToken() ) then
AccountLoginTokenEdit:Show()
else
AccountLoginTokenEdit:Hide()
end
[/spoiler:3p32k7q5]

I have another problem, I want my logo on the left sit in the corner, but it does not work



Code:
[spoiler:3p32k7q5]AccountLogin.xml

AccountLoginLogo
[code]
<Texture name="AccountLoginLogo" file="Interface/Glues/Common/Glues-WoW-Logo">
                     <Size>
                        <AbsDimension x="100" y="50"/>
                     </Size>
                     <Anchors>
                        <Anchor point="BOTTOM">
                           <Offset>
                              <AbsDimension x="1" y="1"/>
                           </Offset>
                        </Anchor>
                     </Anchors>
                  </Texture>
[Code][/spoiler:3p32k7q5]

Pages: [1]