Jump to content

Leaderboard

Popular Content

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

  1. https://github.com/Pokye/rathena-script-collection
    1 point
  2. Done! go to src/map/clif.cpp For Roulette Icon void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); struct packet_roulette_open_ack p; p.PacketType = 0xa1a; p.Result = 0; // result p.Serial = 0; // serial p.Step = (sd->roulette.claimPrize) ? sd->roulette.stage - 1 : 0; p.Idx = (sd->roulette.claimPrize) ? sd->roulette.prizeIdx : -1; p.AdditionItemID = -1; //! TODO: Display bonus item p.GoldPoint = sd->roulette_point.gold; p.SilverPoint = sd->roulette_point.silver; p.BronzePoint = sd->roulette_point.bronze; sd->state.roulette_open = true; clif_send( &p, sizeof( p ), &sd->bl, SELF ); } Change to void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); npc_event_do_id("NPCNAME::OnLabel", sd->status.account_id); } NPC: - script NPCNAME -1,{ OnLabel: mes "add whatever you want."; end; } then under cliff, searched the Cash Shop button and do the same.
    1 point
  3. I don't think there's an option for that. I'll find time to add it tomorrow.
    1 point
×
×
  • Create New...