I wanted to import a new Font for dialog boxes however I accidentally imported it over the speech outline font. Is there any way to get that back?
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 Menuif (event == eEventRestoreGame)
{
if (System.Volume < 100)
{
System.Volume = System.Volume + 1;
System.Volume = System.Volume - 1;
}
else
{
System.Volume = 99;
System.Volume = 100;
}
}
function on_mouse_click(MouseButton button)
{
if (IsGamePaused())
{
return;
}
if (button == eMouseLeftInv)
{
player.Say("Inventory Item");
player.ActiveInventory = InventoryItem.GetAtScreenXY(mouse.x, mouse.y);
mouse.Mode = eModeUseinv;
}
else if (button == eMouseLeft)
{
if (Game.GetLocationName(mouse.x, mouse.y) != "")
{
Room.ProcessClick(mouse.x, mouse.y, eModeInteract);
}
else
{
Room.ProcessClick(mouse.x, mouse.y, eModeWalkto);
}
}
else if (button == eMouseRight)
{
Room.ProcessClick(mouse.x, mouse.y, eModeLookat);
}
}
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.046 seconds with 19 queries.