Jump to content

Vykimo

Members
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Vykimo

  1. Hi @gerrythecat, I had problems with the pandemic as you said... but now I'm back. I'll try to answer everyone who contacted me during my absence. Sorry for giving no news ?
  2. Looks awesome ! It reminds me the first ro web few years ago (when all RO sprites were reworked). See : https://youtu.be/O34dKfQuxVo A 4K rework of RO sprites is the future for me (Gravity gonna release it in next ~10 years). And what about upscaled head sprites? I'm curious to see an upscaled 60fps walking Riding Rune Knight. May someone make it for me ? ?
  3. And what about 1 login-server, 2 char-server, 1 map-server. Is this configuration possible? ?
  4. Hi good idea, but maybe it's better to base your software on npc warp scripts directly inside NPC folder... ?
  5. Nice idea ! I have some remarks : - First, you should look into autotrade in order to be able to close your client with autopilot still on. I think you just have to remove connection link with client (sd->fd = 0) or maybe just a bit more... - Currently it's only a matter of rules right? Like homunculus. No "real" AI is involved into your system (machine learning etc), isn't it? - Then you should better propose a .diff or a patch in your git (instead of a whole emulator)
  6. Here is my solution. In your function : if (pc_cant_act(sd)) break; if(sd->state.arealoot == 1 && map_foreachinallrange(skill_greed, &sd->bl, 5, BL_ITEM, &sd->bl) == 0) return; else if (!pc_takeitem(sd, fitem)) break; In pc.cpp Change this : if (!check_distance_bl(&fitem->bl, &sd->bl, 2) && sd->ud.skill_id!=BS_GREED) return false; // Distance is too far to this : if (sd->state.arealoot == 0 && (!check_distance_bl(&fitem->bl, &sd->bl, 2) && sd->ud.skill_id!=BS_GREED)) return false; // Distance is too far
  7. The converter is outdated... it doesnt fit anymore to lua
  8. Fuck nice !! Sell them to Gravity, they are way better than older
  9. Kind of customization that we love. 'Lookin forward to seeing more of your stuff!
  10. View File @restock everywhere from your storage One version of @restock. Create a list of items to restock automatically from your storage. Available everywhere Usage : @restock <itemid> <itemid> ... : add items to restock list @restock off : disable restocking Config : Consume 1 coin if non VIP Player, but you can disable it. You can set maps where restocking isn't allowed. Submitter Vykimo Submitted 11/12/2018 Category Utilities Video Content Author Vykimo  
  11. View File Snatch Modification SRC Modification of skill "RG_INTIMIDATE, Snatch". Teleport the player near a mob with the same id or near a monster with the same race present on the current map (if none, on random location). That's only a patch to apply on your rathena folder. Don't forget to thumbs up me if you like my content~ Submitter Vykimo Submitted 11/13/2018 Category Source Modifications Video https://www.youtube.com/watch?v=z6P1T_Cf6ZU Content Author Vykimo  
  12. Version 1.0.0

    95 downloads

    SRC Modification of skill "RG_INTIMIDATE, Snatch". Teleport the player near a mob with the same id or near a monster with the same race present on the current map (if none, on random location). That's only a patch to apply on your rathena folder. Don't forget to thumbs up me if you like my content~
    Free
  13. I'll code it, it'll be available asap in src downloads. EDIT/ here is it :
  14. Vykimo

    HP/SP Drain

    Partial answer : Go in skill.cpp, search for : if( sd && src != bl && damage > 0 && ( dmg.flag&BF_WEAPON || (dmg.flag&BF_MISC && (skill_id == RA_CLUSTERBOMB || skill_id == RA_FIRINGTRAP || skill_id == RA_ICEBOUNDTRAP)) ) ) { replace by this : if( sd && src != bl && damage > 0 && ( dmg.flag&BF_WEAPON || dmg.flag&BF_MISC || dmg.flag&BF_MAGIC ) ) { This answer could partially answer your problem, but i'm not sure it would be enough..
  15. Version 1.0.2

    1170 downloads

    One version of @restock. Create a list of items to restock automatically from your storage. Available everywhere Usage : @restock <itemid> <itemid> ... : add items to restock list @restock off : disable restocking Config : Consume 1 coin if non VIP Player, but you can disable it. You can set maps where restocking isn't allowed.
    Free
  16. Please formulate your request better…. You want to reduce max damage from 32k to 16k is that right?
  17. Vykimo

    HP/SP Drain

    I Don't really understand the problem. Can you specify which skills you would like to be affected ?
×
×
  • Create New...