Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/27/25 in all areas

  1. Hello guys, this is my rAthena Text Editor (Offline), a lightweight, browser-based tool I created for editing rAthena scripts (syntax highlight) without needing any installation or internet connection. Features: Edit your scripts directly in your browser Download your code as a .txt file after you're done Open existing .txt files to continue editing Toggle between Dark Mode and Light Mode for better readability Works 100% offline – no installation, no internet, no hassle Grab the file here: https://github.com/Manuuuu21/rAthena-Text-Editor Screenshots: This is a simple tool made for convenience, especially for fellow scripters who want to work quickly without setting up a full IDE. Feel free to check it out, use it, or suggest improvements. Thanks and happy scripting!
    1 point
  2. Suggestions: - Make it also available as a GitHub page. If you have a slot for it, it'd be great to have it just be available online too on your github.io. - Button to save as .cpp in one click (I prefer it over .txt, works the same but has highlighting, I know I can manually change but :effort:) - Button to Copy All (in case we want to copy paste our file contents instead of downloading) - Allow drag and drop to Open File - Autocomplete (could be hard to implement, but would be huge help if it used script_commands to autocomplete and offer help, like displaying "*message "<character name>","<message>";" when you type "mess...") I find it cool, I had to setup my Notepad++ to not bug out with rAthena syntax so I'm sticking with it for now, but if it gets a few more features it could end up being worth over NP++, good work
    1 point
  3. View File Top Hunt MVP Ranking + Favorite MVP Showcase (FluxCP Addon) Top Hunt MVP Ranking + Favorite MVP Showcase (FluxCP Addon) Hi everyone, I'm excited to share a my FluxCP Rank I've developed for server owners who want to showcase and reward their most dedicated MVP hunters! Top Hunt - MVP Kill Ranking This module tracks and displays the top MVP killers on your server in real time, directly integrated into your FluxCP. It ranks players based on the number of MVPs killed and also highlights each player's favorite MVP — the one they've hunted the most! Features: Live MVP Kill Ranking Favorite MVP displayed for each top hunter Easy to install and configure Great for community engagement, competitive events, and rewarding your most active players! LIVE Preview: Suda RO: MVP Total Ranking (TOP 20) Install: - modules/ranking/topmvp.php - themes/default/ranking/topmvp.php - add on your acces conf Submitter masterzeus Submitted 05/06/25 Category FluxCP Addons Video Content Author Asura for SudaRO.  
    1 point
  4. Version 1.0.0

    367 downloads

    You need at lest rAthena 10e7035bebdbc2ec25a392ee2cf14172ecf169e5 or above! (for old rAthena you should add the pr manually!) SCRIPT HEADER (INFO) //===== rAthena Script ======================================= //= getgpmapunits command //= getipmapunits command //===== By: ================================================== //= Sader1992 //= Free!! // https://rathena.org/board/profile/30766-sader1992/ //===== Current Version: ===================================== //= 1.0 //===== Compatible With: ===================================== //= rAthena Project // https://github.com/sader1992/sader_scripts //===== Description: ========================================= // getgpmapunits("map"); return the number of players with the same GePard id in the given map. (You must have GePard to work!) // getipmapunits("map"); return the number of players with the same IP in the given map. //============================================================ //==== please report any error you find //============================================================ //============================================================ you should add the functions to your rAthena/npc/other/Global_Functions.txt to work (add it in that file where ever you like, no need for guide for that ?!) Examples: scenario ? > you want a Warper NPC (or maybe event NPC) that allow only one player per IP in the map ? //============================================== //NPC EXAMPLE FOR IP FUNCTION //============================================== prontera,152,183,5 script Warper IP Test 446,{ if(getipmapunits("prontera") > 0){ mes "you already have a char inside this map"; }else{ warp "prontera",152,183; } end; } //============================================== Same as above but per GePard ID not IP //============================================== //NPC EXAMPLE FOR GEPARD FUNCTION //============================================== prontera,155,183,5 script Warper GePard Test 446,{ if(getipmapunits("prontera") > 0){ mes "you already have a char inside this map"; }else{ warp "prontera",155,183; } end; } //============================================== BONUS Test: pvp warper prontera,158,183,5 script PVP Warper IP Test 446,{ mes "would you like to teleport to the pvp map?"; if(select("yes:no") == 2) close; if(getipmapunits("pvp_n_1-1") > 0){ mes "there is another character with the same ip inside the map!"; mes "only 1 character per IP allowed in this map!"; }else{ warp "pvp_n_1-1",0,0; } end; }
    Free
    1 point
×
×
  • Create New...