Jump to content

Stolao

Developer
  • Posts

    1443
  • Joined

  • Last visited

  • Days Won

    40

Everything posted by Stolao

  1. Insert plural is from https://github.com/rathena/rathena/blob/master/npc/other/Global_Functions.txtand is an official rAthena script.
  2. It does on my test servers, what git version are you using and do you have any errors?
  3. This is a client side edit, depending on what client date your using it changes a bit, so which client you using?
  4. I did not provide a login cutin simple because different server want different amount if days, for instance my server has 1000 rewards and you cannot get old days again
  5. You didn't even provide git hash or if its pre/re.
  6. Not even close, Use this version https://github.com/Stolao/Npc_Release/blob/master/Daily_Reward/DailyReward_v1.75.txt Which is the latest. Then .Reset = 1; And .MaxWait = 2000000000; Should do Then make sure you have 30 days worth of rewards after day 30 it will start back at day 1 again.
  7. In the latest edition it had a research at end of list option, combine that with a high .MaxWait and it will work fine. As for account based just replace getitem with getitembound
  8. 1. 195 because that's as fast as i can spam my hand 2. Max Stats = Max Level, to keep things somewhat in balance 3. None 4. Don't Sell Potions or Ingredients, make Alchemist hunt to fight.
  9. yes enable packet obfuscation
  10. Technically this is official Behavior and should go into a source Request/Support topic
  11. you don't understand the question either?
  12. Nope but simple enough to make it account bound. Please show me how ^^ thanks change out *getitem <item id>,<amount>{,<account ID>}; *getitem "<item name>",<amount>{,<account ID>}; This command will give an amount of specified items to the invoking character. If an optional account ID is specified, and the target character is currently online, items will be created in their inventory instead. If they are not online, nothing will happen. In the first and most commonly used version of this command, items are referred to by their database ID number found inside 'db/(pre-)re/item_db.txt'. getitem 502,10 // The person will receive 10 apples getitem 617,1 // The person will receive 1 Old Violet Box This transaction is logged if the log script generated transactions option is enabled. You may also create an item by its name in the 'english name' field in the item database: getitem "RED_POTION",10; Which will do what you'd expect. If it can't find that name in the database, apples will be created anyway. It is often a VERY GOOD IDEA to use it like this. This is used in pretty much all NPC scripts that have to do with items and quite a few item scripts. For more examples check just about any official script. for *getitembound <item id>,<amount>,<bound type>{,<account ID>}; *getitembound "<item name>",<amount>,<bound type>{,<account ID>}; This command behaves identically to 'getitem', but the items created will be bound to the target character as specified by the bound type. All items created in this manner cannot be dropped, sold, vended, auctioned, or mailed, and in some cases cannot be traded or stored. Valid bound types are: Bound_Account : Account Bound item Bound_Guild : Guild Bound item Bound_Party : Party Bound item Bound_Char : Character Bound item
  13. Nope but simple enough to make it account bound.
  14. item view ids goes to 64k in 2013 client my mistake, i thought you were asking about headgear view ids
  15. Stolao

    NPC_REBIRTH

    Why not use SL skill Kazail?
  16. https://github.com/rathena/rathena/blob/master/db/packet_db.txtLook for the client date in here ie //2015-11-04aRagexe packet_ver: 55If you don't find it use the use the next closest packet version
  17. When you compile the import folder will automatically generate.
  18. Its not recommend to run on home computer but, it varies alot depending on your connection speed probably only a few if any at all.
  19. I'm pretty sure setcell has to inside a script not as a stand alone code line like an NPC
  20. Yes though off hand (on phone) I don't remember where in the src it is
  21. Stolao

    Dragon Fear

    If your re https://github.com/rathena/rathena/blob/master/db/re/skill_db.txt If your pre https://github.com/rathena/rathena/blob/master/db/pre-re/skill_db.txt
×
×
  • Create New...