Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/24/24 in Posts

  1. RagAnime fluxcp theme with anime concept. this theme is paid not free The function of fluxcp can be used. This theme is also responsive when viewed with the mobile version. has 2 theme options, snow and darkness
    1 point
  2. You can do like getitem callfunc("F_Rand",1234,1234,1234),rand(1,20);
    1 point
  3. To all RO fanatics and beginner dev here is the guide how to fix your custom garments like an official garments item click here video guide (with SADER apps) ^_^ Good luck guys!
    1 point
  4. you can try this... src\custom\script.inc BUILDIN_FUNC(specialeffect3) { struct block_list *bl = NULL; int id = 0; int type = script_getnum(st,2); enum send_target target = script_hasdata(st,3) ? (send_target)script_getnum(st,3) : AREA; if (script_hasdata(st,4)) { id = script_getnum(st,4); bl = map_id2bl(id); } else { bl = st->rid ? map_id2bl(st->rid) : map_id2bl(st->oid); } if(bl == NULL) return SCRIPT_CMD_SUCCESS; if( type <= EF_NONE || type >= EF_MAX ){ ShowError( "buildin_specialeffect: unsupported effect id %d\n", type ); return SCRIPT_CMD_FAILURE; } if (target == SELF) { TBL_PC *sd; if (script_rid2sd(sd)) clif_specialeffect_single(bl,type,sd->fd); } else { clif_specialeffect(bl, type, target); } return SCRIPT_CMD_SUCCESS; } src\custom\script_def.inc BUILDIN_DEF(specialeffect3,"i??"), usage example // GID examples... .@gid = getcharid(3); //.@gid = $@mobid[0]; //.@gid = killerrid; //.@gid = killergid; specialeffect3 EF_HIT1,AREA,.@gid;
    1 point
×
×
  • Create New...