Issue information

Issue ID
#7288
Status
Fixed
Severity
None
Started
Zopokx
May 24, 2013 12:44
Last Post
Ind
May 31, 2013 4:21
Confirmation
N/A

Zopokx - May 24, 2013 12:44

As you know, in Renewal MAX_REFINE is 20.

If you check script.c, in the BUILDIN(successrefitem)[code=:0] if(sd->status.inventory[i].refine == MAX_REFINE && sd->status.inventory[i].card[0] == CARD0_FORGE && sd->status.char_id == (int)MakeDWord(sd->status.inventory[i].card[2],sd->status.inventory[i].card[3]) ){ // Fame point system [DracoRPG] switch (sd->inventory_data[i]->wlv){ case 1: pc_addfame(sd,1); // Success to refine to +10 a lv1 weapon you forged = +1 fame point break; case 2: pc_addfame(sd,25); // Success to refine to +10 a lv2 weapon you forged = +25 fame point break; case 3: pc_addfame(sd,1000); // Success to refine to +10 a lv3 weapon you forged = +1000 fame point break; } } [/code]


you could see that in Renewal, this statement of how to get points in the Blacksmith Rank:
[quote][list]
[*]Rank Point +1: For upgrading a level 1 weapon that you have forged to +10.
[*]Rank Point +25: For upgrading a level 2 weapon that you have forged to +10.
[*]Rank Point +1000: For upgrading a level 3 weapon that you have forged to +10.
[/list][/quote]

converts to:
[quote]
[list]
[*]Rank Point +1: For upgrading a level 1 weapon that you have forged to +20.
[*]Rank Point +25: For upgrading a level 2 weapon that you have forged to +20.
[*]Rank Point +1000: For upgrading a level 3 weapon that you have forged to +20.
[/list][/quote]

because of the MAX_REFINE.

mkbu95 - May 24, 2013 16:52

I did not get it.
See if I understood it right: before you'd get +1, +25 or +1000 points for upgrading your weapon to +10 and now you only get the points when you upgrade to +20?

malufett - May 24, 2013 17:20

[quote]
See if I understood it right: before you'd get +1, +25 or +1000 points for upgrading your weapon to +10 and now you only get the points when you upgrade to +20?[/quote]
yup since master smith can only upgrade up to 10..so while it was set to 20 current ranking system for blacksmith is useless..:D

:meow:

Zopokx - May 25, 2013 13:11

In Renewal is kinda IMPOSSIBLE to get points by upgrading your weapon (3/4 of the methods to get points in the BS Rank) xDD

Ind - May 31, 2013 4:21

Fixed in [url="https://github.com/HerculesWS/Hercules/commit/28972aa0ae33d45c8305a72342695cd6549d81eb"]https://github.com/HerculesWS/Hercules/commit/28972aa0ae33d45c8305a72342695cd6549d81eb[/url]

Ind - May 31, 2013 4:21

Thank you Zopokx