nice share mate, btw you need to remove the last " } " at the l2pcinstance part otherwise it's wrong
to be like this one
+
+ // Add Fighter or Mage Tattoos
+ if (Config.REWARD_TATTOOS_ENABLE)
+ {
+ if (getPvpKills() == Config.PVP_COUNT)
+ {
+ if (!isMageClass())
+ {
+ addItem("Tattoo", Config.TATTOO_FIGHTER_ID, Config.FIGHTER_TATTOO_COUNT, this, true);
+ sendMessage("Congratulations! " + Config.PVP_COUNT + " PvP Kills! You won Fighter Tattoo.");
+ }
+ else
+ {
+ addItem("Tattoo", Config.TATTOO_MAGE_ID, Config.MAGE_TATTOO_COUNT, this, true);
+ sendMessage("Congratulations! " + Config.PVP_COUNT + " PvP Kills! You won Mage Tattoo.");
+ }
+ }
+ }
+