Yukaiii Posted October 29, 2023 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 170 Reputation: 9 Joined: 11/20/13 Last Seen: Yesterday at 02:59 AM Share Posted October 29, 2023 Hi guys! Guys, I'm having a problem, when I open the custom box on my server, the common items, I mean non-custom items, are announced normally. But when the cashier drops a custom item, it announces it but does not show which item was dropped. Does anyone know how I fix this? Dimension-RO 2023-10-29 16-39-57.mp4 Quote Link to comment Share on other sites More sharing options...
0 Chaos92 Posted October 29, 2023 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1827 Reputation: 288 Joined: 08/03/12 Last Seen: 2 minutes ago Share Posted October 29, 2023 27 minutes ago, Yukaiii said: Hi guys! Guys, I'm having a problem, when I open the custom box on my server, the common items, I mean non-custom items, are announced normally. But when the cashier drops a custom item, it announces it but does not show which item was dropped. Does anyone know how I fix this? Dimension-RO 2023-10-29 16-39-57.mp4 your custom item name are correct ? aegis name, english name. Quote Link to comment Share on other sites More sharing options...
0 Yukaiii Posted October 29, 2023 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 170 Reputation: 9 Joined: 11/20/13 Last Seen: Yesterday at 02:59 AM Author Share Posted October 29, 2023 1 minute ago, Chaos92 said: your custom item name are correct ? aegis name, english name. Yes, everything is fine. Common game items seem normal. The custom ones appear like this ex: opened the box and won [nothing shows here] just [] Quote Link to comment Share on other sites More sharing options...
0 Vy Low Posted October 30, 2023 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 319 Reputation: 52 Joined: 03/30/13 Last Seen: 9 hours ago Share Posted October 30, 2023 Better share your script so we can have more info about it Quote Link to comment Share on other sites More sharing options...
0 Yukaiii Posted October 30, 2023 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 170 Reputation: 9 Joined: 11/20/13 Last Seen: Yesterday at 02:59 AM Author Share Posted October 30, 2023 56 minutes ago, Vy Low said: Better share your script so we can have more info about it function script event_box { // change Item ID here setarray @i1[0],607,608; // Common Items setarray @i2[0],512,513; // Rare Items setarray @i3[0],514,515; // Super Rare Items set @i1rand,rand( getarraysize(@i1) ); // Randomize Common Items; just change max amount if you add items set @i2rand,rand( getarraysize(@i2) ); // Randomize Rare Items; just change max amount if you add items set @i3rand,rand( getarraysize(@i3) ); //Randomize Super Rare Items; just change max amount if you add items .chance = rand(100); // Super Rare Item 1% if (.chance == 1) { getitem @i3[@i3rand],1; announce "["+strcharinfo(0)+"] won a ["+getitemname(@i3[@i3rand])+"] from the Super Rare Box.",0; end; } // Rare Item 10% else if (.chance <= 11 && .chance >= 1){ getitem @i2[@i2rand],1; announce "["+strcharinfo(0)+"] won a ["+getitemname(@i2[@i2rand])+"] from the Rare Item Box.",0; end; } // Common Items else { getitem @i1[@i1rand],1; end; } } this is the script I'm using friend. Quote Link to comment Share on other sites More sharing options...
Question
Yukaiii
Hi guys!
Guys, I'm having a problem, when I open the custom box on my server, the common items, I mean non-custom items, are announced normally.
But when the cashier drops a custom item, it announces it but does not show which item was dropped.
Does anyone know how I fix this?
Link to comment
Share on other sites
4 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.