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

Messages - Dark Link

#1
The man peers out over the meadow, knelt upon the moist grass a curious creature with the build of a woman yet wings of a bird, her face concealed, can be see praying to the starry sky...

Original:



3X Zoom:





#2
Merry Christmas from Ricky and Watson!

#3
Thanks Chicky, the plan is for the secret room to be in Nathaniel McFox's house in which there will be a photo or 2 of him and his family.

I'll warn you though, it won't be easy to find but I hope it will be worth it!
#4
One of santa's helpers/a house elf/ Birdo  ;)

#5
I am pleased to announce my first AGS game...

THE CASE OF THE RENEGADE RACCOON

Game Overview:

The Case of the Renegade Raccoon is a single player intuitive point and click detective adventure game set in Victorian London. Amongst the hustle and bustle of the city, a separate community of animals live in parallel with their human counterparts. When an immigrant raccoon is used as a scapegoat (okay, scaperaccoon) for murder by the humans for a crime he did not commit, it is up to you, Detective Nathaniel McFox, a country fox more at home detecting lost acorns for the squirrels than trying to solve a murder in the big smoke, to clear his name.
Play through a series of stylised environments to find clues and unravel the true story behind these events.

The game is played in first person and the only way to actually see what Nathaniel looks like is to find the secret room (oooooh, exciting!)

Here are a couple of screenshots, all the (medicore) artwork is drawn in Flash





Development Progress:

Story: 95%
Scripting: 15%
Graphics: 15%
Sound/Music: 15%

For more information on the game visit my website: http://darklinkgames.com/id2.html or follow progress on twitter @DarkLinkGames
#6
Excellent, thanks for the quick reply
#7
Hi all,

I've got an animated background of a drip falling from the roof and i want to play a sound on the final frame of the animation.

Is it possible to do this?

I've tried doing it manually with the Wait function but I can't get the timings right.

Thanks
#8
Brilliant, thanks very much
#9
Hi all,

I'm trying to use an inventory item on a character so that once the character has this item the player can go to another room.

The editor doesn't recognise that the character has the item though.

I kind of get why it doesn't work (I've set the bool in both room and global script as it's the only way i can get the game to run, if i remove it from room script it has the error
Code: ags
undefined symbol: GivenTicket
)

Anyway, here's my code:

Global Script:

Code: ags
bool GivenTicket = false;

function cSquirrel_UseInv() //Use the train ticket on the squirrel
{
  if (cPlayer.ActiveInventory == iTicket) //If the player uses the ticket on the squirrel then run the following function
    {
      GivenTicket = true; //Sets the boolean variable to true
      dCSquirrelTicket.Start();
    }
}


Room Script:

Code: ags
bool GivenTicket = false; //Is this line the problem?

function hTrainDoor_Interact()
{
  if (GivenTicket)
    {
      cPlayer.ChangeRoom(2);
  }
  else
    {
      Display ("You must present your ticket to the conductor before proceeding.");     
    }
}



Thanks
#10
Ok, I've set up the character but not sure where to put the code, i've put it in the room code but that is giving me the following error:

Parse error: unexpected cWatson

The code i put in reads:

cWatson.Transparency = 100;


Thanks.
#11
I was wondering if it is possible to create dialogue without using characters?

My game is viewed in first person and i currently have the character i want to interact with as an image as part of the background, is it possible to produce dialogue in this way and if so how would i go about doing so?

Thanks.
#12
Aha! Cracked it, it wasn't due to the resolution size as you suggested but because the image wasn't exactly 640x400 (it was 637x400 to be exact)

I rescaled it and imported it again and it works

Thanks for the quick response though
#13
I've just started a project and have an early help question,

i've set the screen size to 640x400 and created my first scene with those dimensions, however when i run the game the window doesn't show the whole scene, any ideas on how to fix this?
SMF spam blocked by CleanTalk