iraciz Posted March 31, 2020 Group: Members Topic Count: 140 Topics Per Day: 0.03 Content Count: 562 Reputation: 111 Joined: 10/05/12 Last Seen: February 12, 2024 Share Posted March 31, 2020 Where to enable the set/up button bellow the cash button? My client is 20180621 and the latest github revision, Pleas how to enable this? this is a sample of a client 2016 that can use it, but I dont find it anywehere. Quote Link to comment Share on other sites More sharing options...
0 Gidz Cross Posted June 14, 2022 Group: Members Topic Count: 133 Topics Per Day: 0.03 Content Count: 686 Reputation: 89 Joined: 04/07/14 Last Seen: 10 hours ago Share Posted June 14, 2022 @iraciz By any chance have you solve this one? I think its attendance icon. Quote Link to comment Share on other sites More sharing options...
0 cook1e Posted June 14, 2022 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 171 Reputation: 68 Joined: 10/25/20 Last Seen: Sunday at 11:52 PM Share Posted June 14, 2022 (edited) If you don't use the Roulette button, you can use the roulette as the config button, you can also change the roulette icon in your grf. go to src/map/clif.cpp Change 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 ); } to void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); npc_event_do_id("NPCNAME::OnLabel", sd->status.account_id); } and make a script like this, for example. - script NPCNAME -1,{ OnLabel: mes "add whatever you want."; end; } Edited June 14, 2022 by cook1e 2 Quote Link to comment Share on other sites More sharing options...
0 Gidz Cross Posted June 20, 2022 Group: Members Topic Count: 133 Topics Per Day: 0.03 Content Count: 686 Reputation: 89 Joined: 04/07/14 Last Seen: 10 hours ago Share Posted June 20, 2022 On 6/15/2022 at 2:48 AM, cook1e said: If you don't use the Roulette button, you can use the roulette as the config button, you can also change the roulette icon in your grf. go to src/map/clif.cpp Change 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 ); } to void clif_roulette_open( struct map_session_data* sd ){ nullpo_retv( sd ); npc_event_do_id("NPCNAME::OnLabel", sd->status.account_id); } and make a script like this, for example. - script NPCNAME -1,{ OnLabel: mes "add whatever you want."; end; } Do i need to diff the client to restore roulette? Quote Link to comment Share on other sites More sharing options...
0 cook1e Posted June 20, 2022 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 171 Reputation: 68 Joined: 10/25/20 Last Seen: Sunday at 11:52 PM Share Posted June 20, 2022 6 hours ago, Gidz Cross said: Do i need to diff the client to restore roulette? Yes, you do. 1 Quote Link to comment Share on other sites More sharing options...
0 Gidz Cross Posted June 21, 2022 Group: Members Topic Count: 133 Topics Per Day: 0.03 Content Count: 686 Reputation: 89 Joined: 04/07/14 Last Seen: 10 hours ago Share Posted June 21, 2022 (edited) 16 hours ago, cook1e said: Yes, you do. How do i somehow turn off roulette and the icon will still present? Reason for this was to elimiated the warning on the map console. I have fixed it. The only problem were i kept on spam clicking the icon even tho the label has been already called. How can i fix this? Edited June 21, 2022 by Gidz Cross I have fixed it. Quote Link to comment Share on other sites More sharing options...
0 STORY Posted January 10 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 06/28/22 Last Seen: Sunday at 07:06 PM Share Posted January 10 On 3/31/2020 at 6:56 AM, iraciz said: Where to enable the set/up button bellow the cash button? My client is 20180621 and the latest github revision, Pleas how to enable this? this is a sample of a client 2016 that can use it, but I dont find it anywehere. Use nemo and enabel restore the icon Roulette and if cash shop hide do it agine restore cashshop icon it work with me now I hope i help you and sorry my bad english Quote Link to comment Share on other sites More sharing options...
Question
iraciz
Where to enable the set/up button bellow the cash button?
My client is 20180621 and the latest github revision, Pleas how to enable this? this is a sample of a client 2016 that can use it, but I dont find it anywehere.
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.