[Release] Fix Shield Upgrade after 110

10/01/2008 05:00 THE BAT#1
On LOTF Source
if you try to upgrade warrior Shield after Level 110 it will back to level 40 again.

this will fix it

in client.cs
Find
else if (CurrentNPC == 700)
{
if (Control == 1)

Under it Find
Code:
if (Other.ItemInfo(ItemId)[3] < 120)
{
     RequiredMets = (byte)(Other.ItemInfo(ItemId)[3] / 10);
     if (RequiredMets == 0)
            RequiredMets = 1;
Replace it with

Code:
if ((Other.ItemInfo(ItemId)[3] < 120 && Other.ItemType2(ItemId) != 90) ||
                        (Other.ItemInfo(ItemId)[3] < 110))
                    {
                        RequiredMets = (byte)(Other.ItemInfo(ItemId)[3] / 10);
                        if (RequiredMets == 0)
                            RequiredMets = 1;
if you find it useful, press Thanks


:)
10/01/2008 09:09 YukiXian#2
Lol, I didn't know about that it would be level 15 again :p
10/01/2008 12:02 pauldexter#3
nice release, thanks alot!
10/01/2008 20:45 THE BAT#4
Quote:
Originally Posted by pauldexter View Post
nice release, thanks alot!
thanks alot
10/01/2008 20:51 glupkotrup#5
You can make a 120 shield and it will fix itself ;)

NOTE: I DON'T PLAY CONQUER ANYMORE, I'M JUST HERE TO SEE HOW IS THIS SECTION GOING!
10/01/2008 21:05 ViRuSeXy#6
didnt know ther is lvl 15 sheild
10/02/2008 03:19 THE BAT#7
Quote:
Originally Posted by ViRuSeXy View Post
didnt know ther is lvl 15 sheild
lol sry level 40 not 15
10/02/2008 18:49 taguro#8
thanks for the release, good info.
10/02/2008 22:02 MeGaMaX#9
Thanks Great work
10/02/2008 22:18 THE BAT#10
Quote:
Originally Posted by taguro View Post
thanks for the release, good info.
Quote:
Originally Posted by androw3349 View Post
Thanks Great work
Thanks
10/02/2008 23:41 kinshi88#11
But, didn't the level 120 shield only recently get implemented?
10/03/2008 00:29 tao4229#12
Quote:
Originally Posted by kinshi88 View Post
But, didn't the level 120 shield only recently get implemented?
That's why you st33l their textures and shit, and then do the server side stuff for your server..

Viola, 120 shield.
10/03/2008 22:39 glupkotrup#13
Haha... True...

They make, we copy... That's a neverending story...
10/03/2008 23:31 taguro#14
Quote:
Originally Posted by glupkotrup View Post
Haha... True...

They make, we copy... That's a neverending story...
yeah, they make, we attempt to copy... so far only two servers have even come close to being a copy of the original, qonquer and acid. hopefully this will change soon.
07/13/2009 23:00 Jay1029#15
Doesn't work..