|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Development::Bug Reports Post detailed bug reports and what you would like to see next in the emu here. |
08-12-2007, 11:15 AM
|
Discordant
|
|
Join Date: Jun 2005
Posts: 286
|
|
Helmets
Helmets aren't showing on my server, they show at char select but not in-game. Also, mobs that use helmtexture to define their texture will only show their base models. Such as kunark goblins 137.
__________________
-Croup (the rogue)
Creator of Pandemic (PvP-Racewars)
|
09-07-2007, 12:08 PM
|
Discordant
|
|
Join Date: Jun 2005
Posts: 286
|
|
Anyone else have this issue?
__________________
-Croup (the rogue)
Creator of Pandemic (PvP-Racewars)
|
09-07-2007, 01:15 PM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
What client do you use? I was having problems like this with Titanium client, but none with the older clients.
|
09-07-2007, 01:52 PM
|
Administrator
|
|
Join Date: Sep 2006
Posts: 1,348
|
|
How old is your server's code? This was a problem in the past with titanium but it should be resolved with the latest code.
|
09-07-2007, 02:11 PM
|
AX Classic Developer
|
|
Join Date: May 2006
Location: filler
Posts: 2,049
|
|
My source is new, hadn't noticed the fixes - I need to revert to Titanium then.
|
09-08-2007, 06:49 AM
|
Demi-God
|
|
Join Date: Jul 2006
Posts: 1,552
|
|
Helmets miraculously showed up on mobs and players for us around build 1034 (there abouts). I jumped from 992 to 1034, so I don't know exactly when.
I'm still more troubled about missing hair on certain races and giant heads all being cyclopes, than helms that most people turn off anyway.
Which, btw... "Show My Helm" doesn't work now either. =) Now you cannot get rid of your helm.
|
09-08-2007, 02:10 PM
|
Discordant
|
|
Join Date: Jun 2005
Posts: 286
|
|
I'm on 1019, using titanium. I'll try updating, thanks.
__________________
-Croup (the rogue)
Creator of Pandemic (PvP-Racewars)
|
09-08-2007, 04:08 PM
|
Administrator
|
|
Join Date: Sep 2006
Posts: 1,348
|
|
Revision 1035 fixed helm and npc head textures on titanium.
|
09-09-2007, 02:03 PM
|
Discordant
|
|
Join Date: Jun 2005
Posts: 286
|
|
Thanks guys that fixed it. And thanks for all the awesome work you've been doing KLS!
__________________
-Croup (the rogue)
Creator of Pandemic (PvP-Racewars)
|
09-10-2007, 09:25 AM
|
Hill Giant
|
|
Join Date: Oct 2006
Posts: 248
|
|
Quote:
Originally Posted by KLS
Revision 1035 fixed helm and npc head textures on titanium.
|
any chance of listing which files diff'ed to fix the helms, for those of us using older builds with custom code (e.g. to manually patch rather than wholesale upgrade).
== sfisque
|
09-10-2007, 09:43 AM
|
Fire Beetle
|
|
Join Date: Jul 2007
Posts: 27
|
|
The Sourceforge CVs has the "Diff to previous" feature. that could help you locate the necessary changes.
Or you could diff the 1034 and 1035 source release.
Or you might try to diff your custom code against the code release you started from(and thus creating a patch) and see if it applies to an more recent release.
|
09-10-2007, 10:04 AM
|
Hill Giant
|
|
Join Date: Oct 2006
Posts: 248
|
|
Quote:
Originally Posted by oldlurker
The Sourceforge CVs has the "Diff to previous" feature. that could help you locate the necessary changes.
Or you could diff the 1034 and 1035 source release.
Or you might try to diff your custom code against the code release you started from(and thus creating a patch) and see if it applies to an more recent release.
|
i was considering #2, but it would then require some work to isolate just the helm fix, as well as anything that had been mod'ed between 992 and current that i didnt want to incorporate.
#3 would be a nightmare because i'm running 992 with some fixes between 992 and 1020-ish manually patched in, and some custom code for my server.
i did a recursive diff one time (against 1032 iirc) and the resulting patch file was hairy to look at.
== sfisque
|
|
|
|
09-10-2007, 10:23 AM
|
Administrator
|
|
Join Date: Sep 2006
Posts: 1,348
|
|
Code:
Index: common/patches/Titanium.cpp
===================================================================
--- common/patches/Titanium.cpp (revision 1034)
+++ common/patches/Titanium.cpp (working copy)
@@ -464,7 +464,7 @@
// eq->padding0070 = emu->padding0070;
eq->eyecolor1 = emu->eyecolor1;
// eq->unknown0115[24] = emu->unknown0115[24];
- eq->showhelm = emu->showhelm;
+ eq->showhelm = true;
// eq->unknown0140[4] = emu->unknown0140[4];
eq->is_npc = emu->is_npc;
eq->hairstyle = emu->hairstyle;
@@ -484,6 +484,7 @@
for(k = 0; k < 8; k++) {
eq->set_to_0xFF[k] = 0xFF;
}
+
eq->runspeed = emu->runspeed;
eq->afk = emu->afk;
eq->guildID = emu->guildID;
Index: common/patches/Titanium_structs.h
===================================================================
--- common/patches/Titanium_structs.h (revision 1034)
+++ common/patches/Titanium_structs.h (working copy)
@@ -240,8 +240,8 @@
/*0238*/ uint32 guildID; // Current guild
/*0242*/ char title[32]; // Title
/*0274*/ uint8 unknown0274;
-/*0275*/ uint8 set_to_0xFF[8]; // ***Placeholder (all ff)
-/*0283*/ uint8 helm; // Helm texture
+/*0275*/ uint8 helm; // Helm texture
+/*0276*/ uint8 set_to_0xFF[8]; // ***Placeholder (all ff)
/*0284*/ uint32 race; // Spawn race
/*0288*/ uint32 unknown0288;
/*0292*/ char lastName[32]; // Player's Lastname
|
|
|
|
09-10-2007, 10:44 AM
|
Hill Giant
|
|
Join Date: Oct 2006
Posts: 248
|
|
woot, u rule man, thanks kindly!!!
== sfisque
|
09-10-2007, 11:05 AM
|
Discordant
|
|
Join Date: Jun 2005
Posts: 286
|
|
Noticed today that helms disappear when you zone. You can just take them off and put them back on and they show up, but just FYI. Thanks.
__________________
-Croup (the rogue)
Creator of Pandemic (PvP-Racewars)
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 08:58 PM.
|
|
|
|
|
|
|
|
|
|
|
|
|