This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function went(this Character*, int x, int y) {
//this checks if x or y are odd and subtracts 1
if (x & 1) x--;
if (y & 1) y--;
if (player.ID == 0){
lx = x;
ly = y;
lPlayerGoing = true;
}
else{
rx = x;
ry = y;
rPlayerGoing = true;
}
this.Walk(x, y);
}
cutBackground = DynamicSprite.CreateFromBackground(GetBackgroundFrame(), TopX, TopY, Width, Height);
player.ChangeRoom(zoomedRoom);
if (cutBackground!=null)
{
DrawingSurface *surface = Room.GetDrawingSurfaceForBackground();
surface .DrawImage(0, 0, cutBackground.Graphic, 0, 640, 400);
surface.Release();
}
function on_event (EventType event, int data)
{
if (event == eEventEnterRoomBeforeFadein && data == zoomedRoom && cutBackground!=null)
{
DrawingSurface *surface = Room.GetDrawingSurfaceForBackground();
surface .DrawImage(0, 0, cutBackground.Graphic, 0, 640, 400);
surface.Release();
}
}
cutBackground.Delete();
Quote from: bicilotti on Sat 28/08/2010 17:23:46Even the mighty Bici can't call his moves properly.
pawn g5 takes f5
Quote from: Khris on Fri 27/08/2010 16:48:58Quote from: Virgil on Fri 27/08/2010 14:34:33Hope I didn't ruin anything.
Sorry to disappoint you, now our queen's gone... :o
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.153 seconds with 15 queries.