Jump to content

sandbox

Members
  • Posts

    949
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by sandbox

  1. find getitem 674,7, $guessprizecount; replace getitem 674,$guessprizecount,getcharid(3);
  2. Copy the mob_db.txt of renewal to pre-re? O_O
  3. db/[pre-]re/item_noequip.txt conf/mapflag/restricted.txt
  4. You should read the item script of Amon Ra / Owl Baron card, it would definitely help you
  5. This should give you an idea on how to work on it.. autobonus "{ sc_start 52,30000,0,1000; }",1000,30000,0,"{ specialeffect2 EF_MAGICALATTHIT; }";
  6. You can do it by using a script though.. - script BonusExpOnKill -1,{ OnNPCKillEvent: if(isequipped(1234) && killedrid == 5678 ) { //Change 1234 to Item ID of the equip, change 5678 to monster ID if you need it to work on a specific monster only. set BaseExp,BaseExp+(NextBaseExp/10); set JobExp,JobExp+(NextJobExp/10); } end; }
  7. You can try this making an item equip-able by 200 players only.. Then modify the Vending skill entry in skill_require_db.txt 41,0,0,30,0,0,0,99,0,0,cart,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1234 //MC_VENDING#露店開設# Replace the last value `1234` to the Item ID of the item that can only be equipped by players lvl 200+
  8. I think they are not included in any character skill tree unless you configure it.. You can implement it by just un-commenting the lines?
  9. Find 2414,9,6,2,-1,0x3,1,5,1,yes,0,0x80,3,none,0,0x0, WM_REVERBERATION,Reverberation Replace (Can cast up to 10) 2414,9,6,2,-1,0x3,1,5,1,yes,0,0x80,10,none,0,0x0, WM_REVERBERATION,Reverberation
  10. Find 2320,BAKONAWA_1,Bakonawa,Bakonawa,156,3351884,1,0,0,10,4801,7302,472,0,251,134,194,70,237,66,10,12,2,9,81,0x1A4,2000,440,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 Replace (Makes bakonawa movable) 2320,BAKONAWA_1,Bakonawa,Bakonawa,156,3351884,1,0,0,10,4801,7302,472,0,251,134,194,70,237,66,10,12,2,9,81,0x1A5,2000,440,672,432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  11. Read the bug fix related to your problem http://rathena.org/board/tracker/issue-8674-item-bonus-error-or-not/
  12. sandbox

    A question

    Hmm, somehow it automatically triggers upon login.. might wanna check your client settings when you press ESC
  13. Didn't you read the comments Imade? setarray .mvplist[0],1234,4567,9812; // replace with MVP Mob IDs set .mvprand,rand(2); //change to length of .mvplist array
  14. They can disable it on the clientsetup so it won't display. Also, you can check this too in items.conf // How much time must pass between item uses? // Only affects the delay between using items, prevents healing item abuse. Recommended ~500 ms // On officials this is 0, but it's set to 100ms as a measure against bots/macros. item_use_interval: 100
  15. Really!? Then my whole life has been a lie
  16. Kindly test.. attachrid(3); set #mvproomuse,1; addtimer 1800000,"Private MVP Room 1::OnEnd"; OnInit: set #mvproomuse,0; detachrid; deltimer "Private MVP Room 1::OnEnd"; end;
  17. Sorry I cannot test it for I do not have a working emulator anymore
  18. If im not mistaken, you can configure it in-game by turning the commands on/off by default, press ESC button then click the corresponding setup that you will configure..
  19. sandbox

    A question

    Check out motd.txt As for the console related messages, check out the config files for each server..
  20. sandbox

    G_Mobs

    Mostly, they are used as dummies for slaves(ex. MVP summons) or some quests that requires to kill specific monsters. Notice that they do not have any drop, because they are intended to be placeholders for existing monsters
  21. Based on the script, it's supposed to show different pictures and loop it to make it look like animated, similar to how Kafras pop-up when you talk to them, but this time its supposed to be animated, sorta like GIF images.
  22. Though it's not free, here's a similar topic http://rathena.org/board/topic/78767-card-effect-stack-limit/#entry180003 To answer your question, based on that topic, 3 kiels should work..
  23. Try this? OnPCDieEvent: if(strcharinfo(3) == "arena" && getgroupid() < 3 && killerrid != getcharid(0)) { announce rid2name(killerrid)+" wins against "+strcharinfo(0),bc_all; } end;
  24. As the error message says, you are missing an SQL table on your database.. Is this a fresh installation? If so, then try to submit a new query for the tables.
×
×
  • Create New...