Hi guys Here is what I need to do
I have bmaps for a score counter
0-9 for the ones and seperate panels agian for the tens.
This is to record how many fish a player catches.
I want an easy way for these to be displayed
Is there a load bmap at pos_x , pos_y having all these panels
in my script all over the place
this is what i am doing so far
for example
panel zero_fish_ones
{Pos_x = 500;//postion for "ones"
pos_y = 675;
layer = 3;
bmap = fish_0;
flags = overlay,refresh,d3d;
}
panel zero_fish_tens//
{ Pos_x = 425;//postion for "tens counter"
pos_y = 675;
layer = 3;
bmap = fish_0;
}
what i want to do is something like
if (fishcaught)
{load bmap pos_x = 475 pos_y = 500
turn bmap off//so new can display
}