2009-07-28, 09:46 PM
Code:
#include <stdio.h>
int main(void)
{
struct MaplePlayer Player;
printf("Vicious Hammer costs %d NX", 4900);
if(HammerPurchaseCount == 2 && IsBuyingPackage(Player))
{
printf("2 x Vicious Hammer cost %d NX", 8500);
}
return 0;
}