Jump to content

Rynbef

Forum Moderator
  • Posts

    948
  • Joined

  • Last visited

  • Days Won

    23

Everything posted by Rynbef

  1. The for loops have a limit to prevent endless loops. The warning shows "Infinity loop" on big for loops. Add before for loop: freeloop(1); and after the for loop add: freeloop(0); Rynbef~
  2. U have to create a timer tick after skill usage or use the prevent logout timer after skill usage. And add the if statement here: https://github.com/rathena/rathena/blob/d53880cf1e75d5547d5b8bcac5596690aff6d080/src/map/pc.cpp#L12895 if(sd->canlog_tick == 0 || DIFF_TICK(gettick(), sd->canlog_tick) > battle_config.prevent_logout) As example add this If u have knowledge about u can create an own timer and battle config. Rynbef~
  3. U should add a separate if statement. as example: if(Class==ID){changebase Job;} And so on Rynbef~
  4. https://github.com/rathena/rathena/pull/7359#issuecomment-1676240597 More options on battle.conf whould be great cuz it's good not only for macro/AHK detection. Maybe add macro_detector(<type>,<time_ticks>{,<account ID>}); macro_detector(type>,<time_ticks>{,"<character name>"}); <type> 0 = Jail 1 = Ban 2 = Mute 3 = trigger npc event 'OnPCCaptchaFailed' or "OnPCCaptchaSuccess" <time_ticks> seconds the player have to solve. So we could give every player who is online at night a reward as example. But he have to solve the captcha. We can add it on the stylist npc or other npcs to prevent auto-clicker and else. Unfortunately I'm only on mobile a few weeks. Rynbef~
  5. I don't know if ur looking forward cuz it's a few time ago. https://github.com/rathena/rathena/blob/d53880cf1e75d5547d5b8bcac5596690aff6d080/doc/script_commands.txt#L6619 Rynbef~
  6. If u run the server first time in renewal or pre-renewal and create a character, login etc. and change the server mode afterwards. It's can be happen. U should stop the server and clear the database of sc_data. That's should fix it. Rynbef~
  7. Can u record a video so I can see how fast it is and on which case? Which client and rAthena version ur using? Renewal or pre-renewal? Rynbef~
  8. If u don't find another way u can add a check if target has equipped the item and then block Knockback but not for specified skill. Therefore u have to src mod it. https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L3062 Rynbef~
  9. Do u looking for this script or u want a similar script? Here I've created a script u can finish. Let me know if u need future help on this script. MomsTutorial.txt Rynbef~
  10. @playniks I can't sleep until I've helped u. So I tried the same think again, again and again and since today its works fine. And I'm glade to upload ur requested client 2019-05-30aRagexe.exe Rynbef~
  11. https://roworkshop.com/andro/main/services.html Rynbef~
  12. I think he will only disable knockback of Magnum break when the item is equipped. Not for the other 40+ skills. U may need src modification. Rynbef~
  13. The Asura Effect is removed from client. Rynbef~
  14. Go to atcommand.cpp and search for mi/ monsterinfo. Do ur changes and problem was solved. Rynbef~
  15. U can add a delay, act delay or cooldown. Rynbef~
  16. The *getcharinfo doesn't exist. Replace: set saveMap$, strcharinfo(3); set saveX, getcharinfo(0); set saveY, getcharinfo(1); With: getmapxy(saveMap$,saveX,saveY,BL_PC); Rynbef~
  17. I see only bitmaps no sprite. U can link it? Rynbef~
  18. Search for the version u want. U can look at the changes and copy the hash of the version. On Linux use: git log - will help u find out which hash u want git checkout <hash> - clone the version On branches u can take a look to. Here's a stable 3 years old version: https://github.com/rathena/rathena/tree/hotfix/dropitems From 5th April 2020 Rynbef~
  19. In my opinion the full guild needs a reload. The guilds are loaded on startup or maybe if all member disconnected. But I'm not sure. Rynbef~
  20. I think it could be really helpful on any server specially for pvp or woe related servers. It looks rly good. We need more releases like this. And hopefully for free. Rynbef~
  21. U can use the discord API and create a php file as cronjob. Rynbef~
  22. Here u go on skill.cpp https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L2355 Rynbef~
  23. Maybe just use port 6901, 5122, 6122 as example for 2nd server. Rynbef~
  24. On makeitem u have to change 2048 to true. Change disablenpc(); to disablenpc; The warnings already describes what u have to do. Rynbef~
  25. That's tells u everything u want to know. The Client sends tokens for now and this is IP bounded. U could just fix it if u use the same IP or a proxy of the first IP for both server Rynbef~
×
×
  • Create New...