Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/24/18 in all areas

  1. Need the latest kRO Install folder for your private server? Look no further! ----> Download <---- Latest: 2023-04-04 Installation: Official kRO Updated: 04/04/2023 Download Link: https://mega.nz/folder/jUsDgRxQ#ttLmLjPY9p9cfU5_ShWVCw Package contains RSU RO Patcher Lite for kRO and kRO RE by [Ai4rei] This package is maintained by [Akkarin] Note: Due to continued abuse of my webservers, the files have been moved to MEGA. You can download an extractable .zip of an installed kRO directory, or you can download the official installer from kRO's website. Note: If you require older maps that are compatible with 2021 and older clients, download the 2021 .zip. A fan of this topic? Hit the rep button
    1 point
  2. View File Bio Lab Doram Hello rathena , A Custom Doram for you new bio lab. Submitter smiths12 Submitted 07/23/2018 Category Monster Sprites Video Content Author RagBoy  
    1 point
  3. Version 1.0.0

    274 downloads

    Hello rathena , A Custom Doram for you new bio lab.
    Free
    1 point
  4. Fixed in 3.1C ty for report
    1 point
  5. 1 point
  6. just in case some still follow this topic and project, I just pushed new changes and make a new PR https://github.com/Sehrentos/rAthena-syntax-highlight/pull/6 just a random sample from rAthena script about the NppSnippets plugin, I don't know what state on my last changes back then (3 years ago) so that's why I never make it public. xD
    1 point
  7. Mapflag System Refactor As of Git Hash: a942853, rAthena Mapflag System has been refactored for the future! Features: Perhaps the biggest benefit to this update is how easy it is to add new mapflags. Adding a new boolean mapflag is as easy as defining a new enum value in the mapflag enum and creating a script constant! That's it! More complex mapflags can be added to the setter with their own unique checks if required. Everything is now consolidated to reduce redundancy that was all over the place which made adding new mapflags painful. There are now getter and setter functions source side when interacting with mapflags. Renamed mapflag nosumstarmiracle to nosunmoonstarmiracle. Some things that are somewhat minimal but help memory utilization: Mapflag pvp_nightmaredrop values are now stored as a vector. Mapflag skill_damage values are now stored as a vector. The global map index are now stored as a vector. Thanks to @Lemongrass for a lot of help and @Secrets for tips! Don't forget to leave comments and testing results! Thanks!
    1 point
  8. Version 1.0.0

    409 downloads

    Hello everyone, i show you the monster ''Raver Skeleton'' it's a skeleton human from Trickster Online, u can use at instances, quests, etc. IMPORTANT: it has sound effects for attacking and dying. please put the data folder in your ragnarok. -Don't steal credits, give credits to me, that I cost my effort to do them. -Do Not edit my work without my permission, It includes recolors.
    Free
    1 point
  9. So if you want: A not clickable npc, with position/info never send to the client/bot (so npctalk, effects, ... will fail), use -1. A not clickable npc, with position/info send to client (npctalk, etc. will work), use 139. A clickable npc, use 111.
    1 point
  10. I noticed that FluxCP has XML version of the server status. I would like to share how to easily customize your online status. We are going to use SimpleXMLElement Class in php. //Specify what is the URL of the status-xml $url = "http://www.yourdomain.com/FluxCP/index.php?module=server&action=status-xml"; //Get the content of the status xml using file_get_contents function $statusxmlcontent = file_get_contents($url); //Load the content to the SimpleXMLElement class so it will be in array form $statusxmlarray = new SimpleXMLElement($statusxmlcontent ); //You can use var_dump($statusxmlarray); to see the structure of the array //Getting the Map Server Status //$statusxmlarray->Group->Server['mapServer'] if($statusxmlarray->Group->Server['mapServer'] == 0) echo "Map Svr is Offline"; else echo "Map Svr is Online"; //Getting the Character Server Status //$statusxmlarray->Group->Server['charServer'] if($statusxmlarray->Group->Server['charServer'] == 0) echo "Char Svr is Offline"; else echo "Char Svr is Online"; //Getting the Login Server Status //$statusxmlarray->Group->Server['loginServer'] if($statusxmlarray->Group->Server['loginServer'] == 0) echo "Login Svr is Offline"; else echo "Login Svr is Online"; //Getting the Online Users //$statusxmlarray->Group->Server['playersOnline'] echo "Users Online : ".$statusxmlarray->Group->Server['playersOnline'];
    1 point
×
×
  • Create New...