Jump to content

Leaderboard

Popular Content

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

  1. Allows you to send private messages to a player (char_id), you can use the char_id or a title as the sender. /** [Hyroshima] * whisper <CHAR_ID_TARGET>,<MESSAGE>,<CHAR_ID_SENDER/TITLE>}; * @return: 0 success, 1 target not found, 2 sender not found. **/ BUILDIN_FUNC(whisper){ map_session_data *ssd,*tsd; char message[70] = {0}; char wisp_title[NAME_LENGTH] = {0}; uint8 len = strlen(script_getstr(st,3)); if(!script_charid2sd(2,tsd)) { //Target not found / offline script_pushint(st,1); return SCRIPT_CMD_SUCCESS; } if(atoi(script_getstr(st,4))) { if(!script_charid2sd(4,ssd)) { //Sender not found. / offline script_pushint(st,2); return SCRIPT_CMD_SUCCESS; } else safestrncpy(wisp_title,ssd->status.name,NAME_LENGTH); } else safestrncpy(wisp_title,script_getstr(st,4),NAME_LENGTH); script_pushint(st,0); safestrncpy(message,script_getstr(st,3),len); clif_wis_message(tsd,wisp_title,message,len,0); return SCRIPT_CMD_SUCCESS; } BUILDIN_DEF(whisper, "is?"), //Hyroshima Example: *whisper 150001,"message test","Tester"; *whisper(150001,"message test",150002; A member had asked me if I would do it, I ended up doing it but then he had replied that he had already done it, so I am making available what I did.
    1 point
  2. Version 2.3.0

    413 downloads

    @hidepet allows to hide all pets except the player's, whereas @hidepetall hides all pets, including the player's. This mod also allows to set a default parameter in battle_conf, just add hide_pet: 1 To set all pets hidden except the player's, or 2 for all pets period.
    Free
    1 point
  3. Marketplace link: rAthena Language Support - Visual Studio Marketplace This extension now lives in rAthena organization, my own fork has been archived. This extension provides rAthena-flavored Athena language syntax highlighting and code snippets and automatically highlights files with .rascript extension. Automatic rAthena script detection for .txt files is coming soon. The following is the non-exhaustive list of code snippets provided by Athena Language Support. * `defnpc`, `defnpcfloat`, `defwarp`, and `defshop` (In-game objects definition) * `deffunction` (Function definition) * `On:` event handler snippet * `for`, `while`, `do` flow control snippet report issues: https://github.com/rathena/vsce-rathena-language-support/issues Special thanks to @JoWei for the base extension for Atom.
    1 point
  4. Version 6.0

    2111 downloads

    In response to this post : https://rathena.org/board/topic/122667-woe-ranking-script/ https://rathena.org/board/topic/121631-woe-rankings-script/#comment-373249 https://rathena.org/board/topic/96397-woe-ranking/ https://rathena.org/board/topic/109488-ranking-woe/ By downloading this file, you agree with my Terms of Service: • You are not allowed remove my signature from any of the included files. • You are not allowed claim my work as yours. If you like it, give me a ?
    Free
    1 point
  5. This was posted before in eAthena forum and I don't know if this is compatible in how to add custom mobs in rAthena. but I hope so..
    1 point
×
×
  • Create New...