Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/21/20 in all areas

  1. Hi everyone, It's been a while since I've published something. Today I'm releasing the code of a patcher I've been working on for some time. The idea was to make an open-source drop-in replacement for the Thor patcher while also bringing some improvements. The project has been developed in Rust and the UI is based on the webview project. The project also includes a cross-platform, command-line THOR patch generator. The patcher's current features are the following: Customizable, web-based UI Cross-platform (Windows 7/8/10, Linux, macOS) Configurable through an external YAML file HTTP/HTTPS support GRF file patching (version 0x101, 0x102, 0x103 and 0x200) THOR patch format support Drop-in replacement for the Thor patcher SSO login support (i.e., can act as a launcher) Manual patching Can use multiple patch mirrors The project's repository can be found here: https://github.com/L1nkZ/rpatchur (and documentation can be found here). Contributions are welcome! Releases v0.3.0: https://github.com/L1nkZ/rpatchur/releases/tag/v0.3.0 v0.2.3: https://github.com/L1nkZ/rpatchur/releases/tag/v0.2.3 v0.2.2: https://github.com/L1nkZ/rpatchur/releases/tag/v0.2.2 v0.2.1: https://github.com/L1nkZ/rpatchur/releases/tag/v0.2.1 v0.2.0: https://github.com/L1nkZ/rpatchur/releases/tag/v0.2.0 v0.1.0: https://github.com/L1nkZ/rpatchur/releases/tag/v0.1.0
    1 point
  2. Yes because you are just using OnPCLoginEvent: I got Antibot that works if you kill monster it will ask you and if you log in to server . You can see it to my collection
    1 point
  3. View File F_Randomizer randomize and split array into arrays this function can be used to randomize and split thr first array passed in to it to the other arrays Warning! the main array size must be divided by the count of the other arrays for example , you have .@main size 4, you should not send 3 arrays cuz 4/3 = 1 and 1 left , it will fail! the example npc from the photo is included in the file also here it is - script Randomizer_test -1,{ OnInit: debugmes "================================================"; setarray .@main,1,2,3,4,5,6,7,8,9,10,11,12; for(.@i=0;.@i<getarraysize(.@main);.@i++){ debugmes "" + .@main[.@i]; } debugmes "================================================"; debugmes "Split and randomize the elements of .@main into .@a .@b .@c .@d .@e .@f .@g arrays"; debugmes "================================================"; F_Randomizer(.@main,.@a,.@b,.@c,.@e,.@f,.@g); for(.@i=0;.@i<getarraysize(.@a);.@i++){ debugmes ".@a " + .@a[.@i]; } for(.@i=0;.@i<getarraysize(.@b);.@i++){ debugmes ".@b " + .@b[.@i]; } for(.@i=0;.@i<getarraysize(.@c);.@i++){ debugmes ".@c " + .@c[.@i]; } for(.@i=0;.@i<getarraysize(.@e);.@i++){ debugmes ".@e " + .@e[.@i]; } for(.@i=0;.@i<getarraysize(.@f);.@i++){ debugmes ".@f " + .@f[.@i]; } for(.@i=0;.@i<getarraysize(.@g);.@i++){ debugmes ".@g " + .@g[.@i]; } debugmes "=================================================================================="; end; } the best place to put the function in is at the end of rathena/npc/other/Global_Functions.txt file Submitter sader1992 Submitted 08/20/2020 Category Utilities Video Content Author sader1992  
    1 point
  4. Updated one Didn't know that kRO might have changed the drop effect until someone asked me to create a plugin. 20200401 Ragexe shows a different drop effect + (do-re-mi?) sound Drop Effect as of 20200401 1 = Blue 2 = Yellow 3 = Purple 4 = Green 5 = Red White is missing? Orange was turned into red? Added sound effect for the pillar effect. I attached my latest video for this.
    1 point
  5. as far as i remember , its in src/map/status.cpp edit : but if it's seems too hard , maybe just u can just use a script like this OnPCStatCalcEvent: if ( readparam(bDex) >= 1 ) bonus bHit, 1; end; } idk , just my few cents
    1 point
  6. hello Leinadz, based on my experience, the file name should be ³²_ÆäÄڰdzÊ.act, .spr, not ÆäÄڰdzÊ_³².act, .spr. Hope this could be a help for you. Have a nice day!
    1 point
×
×
  • Create New...