|
1
|
function scr_shopmorearrowscr_shopmorearrow
function scr_shopmorearrow(arg0)
{
if (pagemax > 0)
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, (cameray() + 280) - (sin(cur_jewel / 12) * 3), 1, -1, 0, c_white, 1);
if ((5 + pagemax) < arg0)
{
if (menu == 11 && selltype == "item")
{
if (itemsellname[5 + pagemax] != " ")
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, cameray() + 440 + (sin(cur_jewel / 12) * 3), 1, 1, 0, c_white, 1);
}
else
{
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, cameray() + 440 + (sin(cur_jewel / 12) * 3), 1, 1, 0, c_white, 1);
}
}
}
(arg0)
|
|
4
|
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, (cameray() + 280) - (sin(cur_jewel / 12) * 3), 1, -1, 0, c_white, 1);
|
|
10
|
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, cameray() + 440 + (sin(cur_jewel / 12) * 3), 1, 1, 0, c_white, 1);
|
|
14
|
draw_sprite_ext(spr_morearrow, 0, camerax() + 370, cameray() + 440 + (sin(cur_jewel / 12) * 3), 1, 1, 0, c_white, 1);
|