Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/02/18 in all areas

  1. View File Soul Link Modification - Script-based Information This source allows you to "script" additional bonuses on soul link buffs like an item script. See db/soul_link.yml for example. Q: Why this and not OnPCStatCalcEvent? A: PCStatCalc is known to be buggy. Alternate diff link: https://github.com/secretdataz/rathena/commit/6b91c4d18cc537e25a64f371ee3faf468b9dcc99.diff THIS RELEASE IS SUBJECT TO GPLv3 LICENSE Copyright © - Secrets <[email protected]> 2018 - All Rights Reserved Take a look at my premade script list if you like my works or want one of my premade scripts. or Submitter Secrets Submitted 04/02/2018 Category Source Modifications Video Content Author Secret  
    2 points
  2. 1006 downloads

    Information This source allows you to "script" additional bonuses on soul link buffs like an item script. See db/soul_link.yml for example. Q: Why this and not OnPCStatCalcEvent? A: PCStatCalc is known to be buggy. Alternate diff link: https://github.com/secretdataz/rathena/commit/6b91c4d18cc537e25a64f371ee3faf468b9dcc99.diff THIS RELEASE IS SUBJECT TO GPLv3 LICENSE Copyright © - Secrets <[email protected]> 2018 - All Rights Reserved Take a look at my premade script list if you like my works or want one of my premade scripts. or
    Free
    2 points
  3. Hello everyone, this is a continuation for my Server-side guide, however, this time, this is a client-side guide instead. No virus can be located at any link located in download spoiler section. So first, before we begin, I would like to tell you that I will not be accompanying you while making a client. Again, this guide is quite long and I expect you to read and absorb it properly. I would be very disappointed and will IGNORE if you have an error that is stated just below. Anyway, moderators, or etc. may change/edit it freely and any suggestions/reports/etc. are highly suggested or required. Again, I will have an example of my own, thus you do not need to follow it. If you find this helpful, see my signature (Not the PayPal, instead the reputation etc. and please don't make a bad thought about it, it's just for some reasons for the others to know that it is working.) Anyhow, this guide WILL WORK at any CLIENT and is not a one-sided client guide only. What to download: Old rev : New rev: I. Letting your Client listen to the server and to the client itself. How to run your server: FAQ: Now you're done. Again, if you have any questions regarding this, please kindly do so, or if you have any suggestions or request to change kindly do so. Again, I really recommend if you follow my server-guide which is stated above. Anyway, good luck on making your server. I hope you'll be able to help the Ragnarok Community. Long live Ragnarok! Best Regards, Freya Edited 22/08/2018: Slashed out one website ; Placed more details.
    1 point
  4. For me, harmony was a total rip-off. Since some programs were able to bypass it. Gepard, in the other hand, is pretty credible, reasonable and @Functoris really active. I made some searches in Google about bypassing gepard to test its credibility. From a site I accessed (I forgot which one), they said that gepard is totally difficult to bypass. So far, as much as I know, no third-party software is able to do so, yet. Regardless, choosing something that's currently developing and active is the most realistic solution for your needs. Don't go over to something that even it's developers have lost interest in maintaining it.
    1 point
  5. I havent seen anything about Harmony in a few years however gepard is currently the most active. Please remember to contact Functor directly from rAthena though. Do not try to buy from outside the website because it may be a scam.
    1 point
  6. 1 point
  7. the reason why I do not immediately answer your question because you are asking a high level scripting question I experienced in the past when I misunderstood topic starter, and I posted a very complicated script, they just stop giving any feedback ... makes me feel my effort wasted what you need to learn is Fisher-Yates shuffle Haru and me perfected the script and it is currently inside Hercules here's an example poring_w01,100,100,5 script dfdsfsadfsdf 1_F_MARIA,{ // here we declare some array setarray .@tmp, 123,234,345,456,567,678,789; .@size = getarraysize( .@tmp ); // just to output the original array .@string$ = .@tmp[0] +""; for ( .@i = 1; .@i < .@size; ++.@i ) .@string$ += ","+ .@tmp[.@i]; dispbottom "original = "+ .@string$; // randomize the array ~ callfunc "F_ShuffleNumbers", 0, .@size -1, .@r; for ( .@i = 0; .@i < .@size; ++.@i ) .@tmp2[.@i] = .@tmp[ .@r[.@i] ]; // output the result ~ .@string$ = .@tmp2[0] +""; for ( .@i = 1; .@i < .@size; ++.@i ) .@string$ += ","+ .@tmp2[.@i]; dispbottom "shuffle = "+ .@string$; end; } EDIT : PS: if you wanna learn sorting algorithm script I can always show off a little bit
    1 point
  8. @celeron0134 hola ~ its done ~ report any bug you can find ~ http://upaste.me/7e7849543c8aa9db2
    1 point
  9. Updated to 2.4.19, updates twRO patch information and makes the UI less confusing. @iAmGnome: Back up. Updated to 2.4.20, the real thing.
    1 point
  10. - script sample -1,{ OnNPCKillEvent: if (isequipped(<item_id>)) { if (rand(100) < 1) if (getmonsterinfo(killedrid, MOB_LV) >= 75) { sc_start SC_EXPBOOST, (600 * 1000), 50; } } end; }
    1 point
×
×
  • Create New...