Menu

Show posts

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

Topics - Fonda

#1
Beginners' Technical Questions / Agi-style
Sun 04/09/2011 18:39:59
how can I do the graphics look like from an old c64 game? There is already a plugin http://www.adventuregamestudio.co.uk/yabb/index.php?topic=19601.0 but it doesn't work properly. I would be grateful if someone could help me, I need to change the modes optionally, just drawing the graphics this way is not an option :)

thanks, fonda

EDIT:
it works!!
#2
how to make a security query like in monkey island 2 for example?
#3
hi dudes, my english isn't very good, but I will explain you my problem anyway.

I have 2 rooms.
In room 1 there is an object (oSomething), that I can pick up ( after picking up this object disappears and an inventoryitem (iSomething) appears in my inventory), trivial.
In room 2, there is a hotspot/object, that has to be invisible/disabled until I didn't pick up oSomething (in room 1) or I have iSomething in my inventory.

my attempt at a solution would be:

function room_Load() //room2 script
{
if (player.HasInventory(iSomething) && // oSomething in room 1 is still visible){

    oBjectInRoom2.Visible=false;
    }



an other problem I have is to make a hotspot enabled, if I have all three items in my inventory, but it works just with some reservations using this scripting:

if (player.HasInventory(iItem1) && player.HasInventory(iItem2) && player.HasInventory(iItem))
    {
    hHotspot.Enabled=true;
    }
   
      else
      {
      hHotspot.Enabled=false;
      }


thanks for reading and I would be glad about a helping answer
SMF spam blocked by CleanTalk