Jump to content

uDe

Members
  • Posts

    400
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by uDe

  1. I don't get this but i will figure it out. thanks. In trunk/src/map/skill.c Find those line and remove or comment (//) that lines. And it should be looking like this if( battle_config.autospell_check_range && !battle_check_range(src, tbl, skill_get_range2(src, skill,skill_lv) + (skill == RG_CLOSECONFINE?0:1)) ) continue; // if (skill == AS_SONICBLOW) // pc_stop_attack(sd); //Special case, Sonic Blow autospell should stop the player attacking. // else if (skill == PF_SPIDERWEB) //Special case, due to its nature of coding. type = CAST_GROUND; sd->state.autocast = 1; skill_consume_requirement(sd,skill,skill_lv,1); skill_toggle_magicpower(src, skill); switch (type) { or this if( battle_config.autospell_check_range && !battle_check_range(src, tbl, skill_get_range2(src, skill,skill_lv) + (skill == RG_CLOSECONFINE?0:1)) ) continue; if (skill == PF_SPIDERWEB) //Special case, due to its nature of coding. type = CAST_GROUND; sd->state.autocast = 1; skill_consume_requirement(sd,skill,skill_lv,1); skill_toggle_magicpower(src, skill); switch (type) { And don't forget to re-compile your server. Correct me if I'm wrong.
  2. Apply it and check if there's any errors and if there's errors, post the errors at here and wait for somebody help you.
  3. So now, you just want a NPC to distribute item for ONLINE PLAYERS AT THE MOMENT ONLY? Like that? If yes, then please read this : http://rathena.org/board/topic/74888-command-to-give-everyone-item/
  4. Can you tell the different between Char and ID? Also, it's seem useless for giving item by IP because someone also can bypass that. Read more : http://rathena.org/board/topic/73010-newbie-package-npc/#entry149749 Just do like Emistry said, use the trunk/db/re/item_trade.txt wisely.
  5. uDe

    timer

    Capuche, can we use this? OnInit: set .Time,10;
  6. Changes for renewal.. Read more : http://rathena.org/board/topic/59748-partyguild-names-with-spaces-doesnt-work-anymore/
  7. Normal attack you mean? I think that's Sonic Blow skill behavior..
  8. You can edit like this.. prontera,50,50,3 script PrizeNPC 123,{ if(##AlreadyClaim > 0) { mes "You already claim your Prize!"; close; } mes "Do you want to claim your Prize?"; menu "Yup Sure!",-; next; mes "Here you go!"; getitem 512,1; //change for prize set ##AlreadyClaim,1; close; } Reward for 1 ID, 1 Time only.
  9. just use notepad++ and search through the NPC folder with the name of the npc you looking for. Well, that's a new info for me. Thanks
  10. I always had problems to find official npc script. So, I just do it like this : http://bit.ly/ZD1MKo
  11. Is it on trunk/conf/mapflag/nocommand.txt ? If yes, I've change it like this : pvp_y_8-2 mapflag nocommand 90 restart, and the result still same.
  12. This is great. But it only give to guild leader. How to make it give the prize to entire winning guild members?
  13. uDe

    RFYL Event

    I've fix some typos and use Emistry method in this script. You just need to change the map, event starting time and prize. nvz.txt
  14. Hello, After updating my SVN, my Admin level 99 can't use any @command in PVP maps. This is from groups.conf : { id: 99 name: "Admin" level: 99 inherit: ( "Support", "Law Enforcement" ) commands: { /* not necessary due all_commands: true */ } log_commands: true permissions: { can_trade: true can_party: true all_skill: true all_equipment: true skill_unconditional: true use_check: true use_changemaptype: true all_commands: true any_warp: true view_hpmeter: true view_equipment: true show_bossmobs: true disable_pvm: false disable_pvp: false } } Current SVN : r17227
  15. solid2005 has update the .patch. Try this : http://rathena.org/board/topic/60817-extended-vending-system-18/page-11#entry199710
  16. You should make a new thread or maybe replying on that thread about the errors. Please provide some screen shot of map-server. If not, other members can't help you because they don't know what errors occurred.
  17. Well, I've been manually applying .diff to my server. It's kinda easy if you know how the modification works. For me, it's same like scripting. Let me give you some tips. From your example, the mod is for src/map/clif.c So, open your clif.c with notepad++ (recommended) Then, what do you need to do is to find or identify which line you need to apply the mods. In this case, for me, I'll simply ignore the @@ -17032,6 +17032,79 @@ Because, different SVN have different lines. So, how to know at which line you need to add it? Easy, just refer to the .diff , and find something like this : void do_final_clif(void) { ers_destroy(delay_clearunit_ers); } The lines above is the default lines from clif.c file. So, simply use CTRL+F to find any line from above. After you found it, copy the modification lines and ADD it ABOVE the line that you're just found. Make sure that your new lines (modification line) is below return 0; } and above void do_final_clif(void) { ers_destroy(delay_clearunit_ers); } Then, you just remove the + sign. IF in the .diff file have line like this - chrif_save(sd, 0); You need to remove the ENTIRE line. Usually, line like that is for default line and you need to replace it with new line (with + sign) from the .diff file. Sorry for my poor English and for other rA members, please correct me if I'm wrong.
  18. Hello guys, I would like to request some modifications for Lilith's Extending Vending System . In my server, I just use Poring Coin as a currency for Vending. So here's my request : - I just need players able to put the max amount of selling item until 30,000 only. Not 1 Billion of amount. - When Vender have max amount of Poring Coin (30,000). Any buyers cannot buy his/her item anymore. < Currently, this is the main problems for me. Thank you for your help.
  19. It's like Lilith is no longer giving support for this src mod. Too bad.. But thanks to Solid2005. Hoping that you will keep updating the changes. I had successfully installed this src mod to my r17227. For those who can't install this, please show here your error while compiling. It helps a lot. Good luck.
  20. What linux version you use ? or window? ^^ i'm using lunix debian6 64bits and not wroking with last version rathena.. But on linux debian 4 32bits i dont have this probleme -.- Linux.. But not sure 32bit or 64bit
×
×
  • Create New...