Jump to content

raF

Members
  • Posts

    223
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About raF

Profile Information

  • Current Mood
    Careless
  • Gender
    Male
  • Country
    Afghanistan

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

raF's Achievements

Newbie

Newbie (1/16)

1

Reputation

2

Community Answers

  1. Hello friends, I would like to know if there is any way to control the weather. I am not sure if its client or server related so if you can hint me. I want to make my game always sunny and clearly. Thank you,
  2. He was talking about l2appeal, I guess
  3. Hello MaxCheaters, I would be glad if somebody help me to create a system, which nominates top 5 Players by PvP and reward them. After that restore PvP points to 0.
  4. I guess you should edit Formulas.java /** * Calculate delay (in milliseconds) for skills cast. * @param attacker * @param skill used to know if skill is magic or no. * @param skillTime * @return delay in ms. */ public static final int calcAtkSpd(L2Character attacker, L2Skill skill, double skillTime) { if (skill.isMagic()) return (int) (skillTime * 333 / attacker.getMAtkSpd()); return (int) (skillTime * 333 / attacker.getPAtkSpd()); } P.S. Do not listen SweeTs. Working on something different than aCis is time wasting. If you really want to learn something start working on aCis. If you get a customer rank you can receive better support and a lot of codes (for examples or ready to use).
  5. Ok but how to ignore the base status of the characters? Atleast the speed and atack speed must be fixed.
  6. Hello guys. Can somebody help me to create a new skills with can give a custom status to a player. No matter of equipment/buffs/classes, players with this skills must have 5000 hp/cp; 2k p/m attack; 1000 a.speed and so on. I hope u got the idea.
  7. Ok, but there is no doAio method in L2PcInstance
  8. Hello guys. I am using Service NPC and AIO System, both by SweeTs. The problem is that i can not add AIO as service. (1. & 2.) Here is the code, but I am missing the most important - doAio method. // AIO Items int aioItemId = 57; int aioItemCount = 10; else if (event.equals("setaio")) { if (!player.isAio()) { if (st.getQuestItemsCount(aioItemId) >= aioItemCount) { st.takeItems(aioItemId, aioItemCount); 1. // player.setAio(true); 2. // player.setEndTime("aio", 1); player.setTarget(player); player.broadcastPacket(new MagicSkillUse(player, 5103, 1, 1000, 0)); player.broadcastUserInfo(); return "AioServices-Success.htm"; } return "AioServices-NoItems.htm"; } return "AioServices-AlredyNoble.htm"; }
  9. With Instance i mean the NPC which will show the info. If I am right i have to do the following: 1. Create a new column in DB. 2. Create a task in L2RaidBossInstance.java / onDie method / which saves TOD. 3. Create the instance which will load and show the information.
  10. What if a make a new collum in RB_Spawnlist where time of death will be saved on "onKill" method and after that loaded by a new instance.
  11. if (getCastle().getOwnerId() > 0) { L2Clan clan = ClanTable.getInstance().getClan(getCastle().getOwnerId()); Broadcast.toAllOnlinePlayers(SystemMessage.getSystemMessage(SystemMessageId.CLAN_S1_VICTORIOUS_OVER_S2_S_SIEGE).addString(clan.getName()).addString(getCastle().getName())); + clan.getWarehouse().addItem("cwh", 157, 50, null, null); + clan.broadcastToOnlineMembers(new CreatureSay(0,Say2.HERO_VOICE,"Castle Manager","Dear players, there is gift for you in the clan warehouse"));
×
×
  • Create New...