Character Browser Dual Wield.
Reply
Dual Wield.
Nitpicking again, I apologize for posting so many times in such a short span, I just find a lot of things when I snoop.

profile.php
From:
php
More +
"duel_wield" => array( 4884, 4, "uint32", "profile", "profile", "", "", ""),


To:
php
More +
"dual_wield" => array( 4884, 4, "uint32", "profile", "profile", "", "", ""),


skills.php
From:
php
More +
'DUEL_WIELD' => $char->GetValue('duel_wield'),


To:
php
More +
'DUAL_WIELD' => $char->GetValue('dual_wield'),


skills_body.tpl
From:
tpl
More +
<tr onMouseOver="this.style.background = '#7b714a'" onMouseOut="this.style.background = 'none'" >    <td>Duel Wield</td>    <td> {DUEL_WIELD}</td>  </tr>


To:
tpl
More +
<tr onMouseOver="this.style.background = '#7b714a'" onMouseOut="this.style.background = 'none'" >    <td>Dual Wield</td>    <td> {DUAL_WIELD}</td>  </tr>
Last edited by Kinglykrab on Thu Feb 13, 2014 10:10 pm; edited 1 time in total
Thu Feb 13, 2014 8:04 pm
Then next time post it all in one thread instead of making several. Easier on us lazies that keep our shit updated on our own if we like the ideas people are posting.
Thu Feb 13, 2014 9:52 pm
Listen to This Guy
Yeah, my bad, they were different things, so I thought it'd be easier to make them all separate posts in case people were looking for specifics.
Thu Feb 13, 2014 10:09 pm
Character Browser Dual Wield.
Reply