-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path[proc,agilityarena_rewards_gracefulbutton_draw].cs2
31 lines (31 loc) · 1.38 KB
/
[proc,agilityarena_rewards_gracefulbutton_draw].cs2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 2035
[proc,agilityarena_rewards_gracefulbutton_draw](component $component0, obj $obj1, obj $obj2, string $string0, int $int3, boolean $boolean4)
def_string $text1 = "";
if ($int3 = 1) {
$text1 = "<$string0><br>1 ticket";
} else {
$text1 = "<$string0><br><~tostring_spacer($int3, ",")> tickets";
}
def_int $int5 = 0;
if ($obj2 ! null) {
if (inv_total(inv, $obj2) > 0) {
$int5 = 1;
}
} else if (inv_total(inv, graceful_hood_11850) > 0 & inv_total(inv, graceful_top_11854) > 0 & inv_total(inv, graceful_legs_11856) > 0 & inv_total(inv, graceful_cape_11852) > 0 & inv_total(inv, graceful_gloves_11858) > 0 & inv_total(inv, graceful_boots_11860) > 0) {
$int5 = 1;
}
cc_deleteall($component0);
def_int $int6 = 0;
if (inv_total(inv, agility_arena_ticket_2996) < $int3 | $int5 = 0) {
$int6 = ~v2_stone_button_filled($component0);
~agilityarena_rewards_gracefulbutton_drawcomponents($component0, $int6, $obj1, $text1, ^red);
if_setonop(null, $component0);
} else if ($boolean4 = true) {
$int6 = ~v2_stone_button_in_filled($component0);
~agilityarena_rewards_gracefulbutton_drawcomponents($component0, $int6, $obj1, $text1, ^white);
if_setonop("opsound(event_opindex, 2)", $component0);
} else {
$int6 = ~v2_stone_button_out_filled($component0);
~agilityarena_rewards_gracefulbutton_drawcomponents($component0, $int6, $obj1, $text1, 0xff981f);
if_setonop("opsound(event_opindex, 2)", $component0);
}