im using the gfx void to show 2 gfx's at once, but the gfx always points towards the south. is there anyway i can fix this?

Code:
	public void stillgfx3(int id, int heightS, int Y, int X, int timeBCS) 
	{
		stillgfx100);
		outStream.createFrame(85);
		outStream.writeByteC(Y - (mapRegionY * 8));
		outStream.writeByteC(X - (mapRegionX * 8));
		outStream.createFrame(4);
		outStream.writeByte(0);//Tiles away (X >> 4 + Y & 7) 	//Tiles Away From absX and absY 
		outStream.writeWord(id);//Graphic id
		outStream.writeByte(heightS);//height of the spell above it's basic place, i think it's written in pixels 100 pixels higher //100
		outStream.writeWord(timeBCS);//Time before casting the graphic
	}
thas what im using how can i make it face whichever way my player is facing like stillgfx100, problem with stillgfx100 is if u can change the height it only shows 1 of the 2 that i coded for.