Jump to content

FunKermaN

Members
  • Posts

    20
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About FunKermaN

Profile Information

  • Gender
    Male
  • Country
    Afghanistan

Recent Profile Visitors

189 profile views

FunKermaN's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. no , Those looking does not allow you to do any action "move camera/player" and gives you one window to select first weapon then armor and class "step by step" and when finish teleport you to main town
  2. Hello, i'm search for starting tutorial when you log for first time in game to show you the npc's, gives you to select weapon/armor and only Third class and teleport you to main town... i watch that in many servers but i cant found it
  3. dont have anything about heavy at useitem.java give me one example! i use that at the item and does dont do anything <add order="0x40" stat="pAtk" val="1737"> <using kind="Bow"/> </add>
  4. if you cant help me dont spam at this topic !!!
  5. and how i can prevent with this method the healers to don't use the tattoo for mages ? what ? that method does not work at interlude ? <cond msgId="1518"> <!-- mdgId is showing in client to player why he cant use this item--> <and> <player level="81" /> <!-- here you put from what lvl you can use this item--> <player class_id_restriction="93, 101, 108, 117" /> <!-- Here you put all classes you want to use that item --> </and> </cond>
  6. I have write that but does not work :/ "its a test code" if (activeChar.getClassId().getId() == 92 && item.getItemType() == L2WeaponType.NONE && item.getItemId() == 15036 && item.getItemId() == 15046 && item.getItemId() != 15056 && !activeChar.isGM()) { activeChar.sendMessage("That tattoo is not allowed to wearing at your class."); return; }
  7. i have write that ... this is correct ? if (Config.TATTOO_CHECKER) { if (player.getClassId().getId() == 92) //archer { if(activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_FACE.getId()) == 8530) { setPaperdollItem(PAPERDOLL_FACE, 8530); } else { setPaperdollItem(PAPERDOLL_FACE, null); activeChar.sendMessage("That tattoo is not allowed to wearing at your class."); } } else if (player.getClassId().getId() == 93) // dagger { if(activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_FACE) == 8531) { setPaperdollItem(PAPERDOLL_FACE, 8531); } else { setPaperdollItem(PAPERDOLL_FACE, null); activeChar.sendMessage("That tattoo is not allowed to wearing at your class."); } } }
  8. Hello guys Merry Christmas, maybe someone can help me to create one code, to wearing each class his own tattoo ? For Example: The Archer can wearing tattoo for archer if worn at dagger to get penalty "low stats" or even better to don't allow to wear. Thanks in advance!!!
  9. i want to use at the community board top 15 pvp
  10. i want to take the kills from the table characters in database but i don't know the link ...
  11. Hello guys i cant found from where get the commands the characters table ... example for access_levels table is "com.l2jfrozen.gameserver.datatables.AccessLevel.java"
×
×
  • Create New...