Jump to content

melron

Legendary Member
  • Posts

    1,399
  • Credits

  • Joined

  • Last visited

  • Days Won

    28
  • Feedback

    0%

Everything posted by melron

  1. Thanks :) I dont think that it is hard to adapt it since its all about the connections...
  2. You have on point there... Anyway i gave the base idea :P Thank you! Edit: Reminder with command added.
  3. Hi guys, I created a vote reminder that remind players if they can vote every X minutes. Its working with this vote manager, but its easy to add your own vote manager. http://pastebin.com/VbhkfHVD It is for acis Config/VoteReminder.properties Image: ============================================================ Reminder with command: .votes http://pastebin.com/8m0qe3hB img:
  4. Thank you bro! Its for acis project (c6) Thank you , i appreciate that!
  5. Thanks mate :) If you say so... Thanks :) Thank you my friend!
  6. Hello guys, Im selling my custom Donate Npc. What this npc contains? 19 Configs for make your life easier Configurable via Xml Change Name Clean pks Change Password Change Gender Augment skills (active/passive/stats) Custom buffs Noblesse Hero (4 ever) Change Name color Change Title color Vip Recommends Change Xp rates Change Spoil rates Enchant skills with your desired value Armor sets (Draconic,IC,Major) | Jewel sets (Tateo,Epic) | Weapons S grade with your desired enchant value Raise clan level Raise clan reputation score Get full clan skills Buy Castle The price is 20 euro (Paypal only) For people who believe that the price is high: I dont force you to buy this, Go and suicide <Acis> Html designed by : protoftw
  7. RequestRefineCancel.java RequestConfirmCancelItem.java case L2Item.CRYSTAL_S: price = 480000 break;
  8. When the condition is true, destroy this weap, add new weap, equip , broadcast update
  9. create this new instance with another name and this name should be in npc type .. example use instance name : MyBufferInstance and in npc type use MyBuffer
  10. Δεν θα αναφερθώ στις αρχές σου πάλι... Καλό βράδυ
  11. Brave.... Αλήθεια τώρα ειπες κατι τέτοιο? Αν υπάρχουν άτομα σαν εσένα που περιμένουν πως και πως να δουν τα newbies και να τους την πουν , δείχνοντας οτι κάποιοι είναι... Ναι! το forum θα αδειάσει.... Αντι αυτού, μπορούσες να του εξηγήσεις 2 πράγματα ώστε να μάθει πιο γρήγορα.. Απο την άλλη ρε μπαγλαμά ... Βλέπεις ενα ποστ... Δεν σου άρεσε - Δεν ήθελες να βοηθήσεις... ΠΟΥΛΟ! Τι κάθεσαι και μαλακίζεσαι? Οκ δεν λεω το παιδί ειναι αρκετά αρχάριο αλλα δεν πρέπει να δείχνεις τις αρχές σου εκεί....
  12. String _name = st.nextToken(); and change your bypass to bypass -h _bbsservice;Name;$newName;
  13. Ofc i know it.... I made this topic because i saw how petition combobox works and i confused...
  14. Very good designer, trusted and skilled person! +1
  15. Hello guys, [iL client] Is that possible in a combobox to add space ? example: Edit: when u want petition the combobox have normaly spaces.. <combobox width=250 var=test list=first;second;third;> is : now if i want to add items like : "First one" for example... the code: <combobox width=250 var=test list=First one;Second one;Third one;> is : I dont think im doing something wrong... Things i tried: html replace from First to "First one" , same results. Instead of space adding as replace but since it have ";" it stop there, reading new item..
  16. if you are working on acis you can check how admin gm shop works.. try { final int val = Integer.parseInt(command.substring(10)); final NpcBuyList list = BuyListTable.getInstance().getBuyList(val); if (list == null) activeChar.sendMessage("Invalid buylist id."); else activeChar.sendPacket(new BuyList(list, activeChar.getAdena(), 0)); } catch (Exception e) { activeChar.sendMessage("Invalid buylist id."); }
  17. If you check how it rly works ull find your answer :D All vars are strings... Next step is to make them integer with checks.. take a look in the example u said.. private static int getCoinId(String name) { if (name.equalsIgnoreCase("adena")) return 57; if (name.equalsIgnoreCase("ancientadena")) return 5575; if (name.equalsIgnoreCase("festivaladena")) return 6673; return 0; }
  18. this is because the bypass is string... so it reads "bypass -h _bbsservice;Name,$newName" cant convert from $newName to the given name... if for example ur button bypass will be as : bypass -h admin_setname $newName will be fine... i think u can understand what i mean... $newName must be as argument and not as $newName (string) Edit: try to change String _name = command.substring(11); to (17)
×
×
  • Create New...