View Single Post
  #33  
Unread 01-27-2005, 12:50 PM
Drumstix42's Avatar
Drumstix42 Drumstix42 is offline
A Griffon
Featured
 
Join Date: Oct 2004
Server: Antonia Bayle
Posts: 3,287
Default

Sharing isn't caring? That doesn't help anyone at all. Lol.

Also, if you were talking to me, mine is Dynamic.

Lastly, I can care less what just about anyone thinks, I'm sharing the code a few select people, but I'd rather not have everyone running around with the same signature...The code is on the eq2players site anyone... all the code, the parse code. Mine is only different because I change it to how I wanted it, and added extras.

Also, anyone that does have what I posted or gave to you...

make the last part of the defines look like this:

Code:
$Kills=$achievements_a[24];
$Deaths=$achievements_a[29];
$KPD=$achievements_a[36];
$Quests=$achievements_a[41];
$Magic=$achievements_a[53];
$Melee=$achievements_a[60];
$Recipes=$achievements_a[74];

if ($Deaths == 0)
{
$LastKilledBy='n/a';
$LastKilledDate='n/a';
$Zone='n/a';
}
else
{
$LastKilledBy=$traits_a[36]." ".$traits_a[37]." ".$traits_a[38];
$LastKilledDate=$traits_a[30]." ".$traits_a[31]." ".$traits_a[32];
$Zone=$traits_a[40]." ".$traits_a[41]." ".$traits_a[42];
}
(just make sure the if check is under where $Deaths is defined)

The reason for this is because when parsing the page, if there is nothing there for what killed, where, and when, it skips it, messing up the defines. I changed my sig to my newest char which currently has no deaths.
__________________
"I'm afraid you're guilty of thought-crime. Don't bother getting the door, we'll let ourselves in..."
<Donate to DrumsUI> < [DrumsUI] Updater > < [DrumsUI] Full Interface> < Drumstix42 on Twitch.tv
>

Last edited by Drumstix42 : 01-27-2005 at 12:56 PM.
Reply With Quote