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 - Ghostlady

#1
Oh nice, I'll check that out!
#2
Hi, my game is ready for beta testing and I would like to know what the minimum requirements are to run the game.  I will also need this information for when I put it up on Steam.
I found this from another game and want to make sure this is correct.

Minimum:
OS: Windows Vista or higher
Processor: 2.7 GHz Dual Core (and above, can run on single core)
Memory: 2 GB RAM
Graphics: Direct3D, OpenGL, DirectX 5
Storage: ??? GB available space  (my compiled folder is showing size of 508MB)
Sound Card: Any
#3
Nice, thank you Rik!
#4
Can anyone recommend a good software, that's not too expensive, that can capture ingame play video?
#5
Yikes. I found what I needed in the .trs file.  I was getting it confused with the .tra file.  Sorry for the confusion.
#6
I am speaking of a TRA file in my current compiled game with the latest version of AGS. Someone told me how to get a script of the whole game, but I can't find the post right now. Maybe it wasn't the tra file but a different file.

I do know the keyword I am looking for. Is there a way to a run text search over all the files without going one room at a time?

#7
Ok, that got rid of all the old files.  In that past, I was able to use that tra file and be able to view it and able to search it.  This replaced the "filedump" that was in the very old version.  I need to find some speech in the game and I don't want to have to go through tons of rooms. 
#8
Hi, I created a new translation file but I cannot read it in notepad.  It looks like a bunch of junk.  Also, I have some older updated translation files that I can't seem to get rid of.  They keep showing up in my compiled folder.  How do I get rid of these?
#9
I'll take this all into consideration. Thank you!
#10
As I am getting close to finishing up my game and would like to have some beta testing done, is there any advice on how to have some trigger that will disable the game so that it cannot be copied/distributed?
Is there an internal date and time that I can check and cause the game to quit working once that expires.  Or a count of how many times the executable has been opened? Something along these lines...
#11
Crimson Wizard - Checking for the game being paused was a good fix.  I only had a handful of rooms it needed added it. I personally prefer scripting over graphics because graphic work is not one of things I am very good at.  But I am willing if it is a solution.  Thanks for the tidbit about Custom Properties, it is good to know going forward.

Kris - Thank you for working out a gui and showing me how to do a transparent border. This is my problem. It is an older game from 2004'ish and is set at a 16 bitrate, imported into the current AGS version, and transparencies won't show transparent for any bitrate over 24. When I created my background, it went higher than the 24 bitrate so no transparency.  If I export it to png it makes it 8 bit and looks bad. It has made this game a real challenge. But, it is almost complete and I feel there has been some magic that came into play with the graphics, none that I did. :)
#12
The Inventory Gui is currently set to "pause game when shown".
How did you add a transparent border to the background image?  Will the way I did it not work? (created a screensize background and layered my inventory window on top of the transparent background and then saved as a .png.)  Actually I played with this again today and it is offset.

Here are two screenshots showing how I created the Inventory Box.

This the inventory Box


This is the box inside the Inventory box which will hold all the inventory items.


I haven't tried Crimson Wizards plan yet.  That may be the easiest solution.


Code: ags
Global Repeatedly Execute:

if (GetLocationType(mouse.x,mouse.y) != eLocationNothing) {
      if(Mouse.Mode!=eModeUseinv)  {
      if (player == cWoman)  Mouse.UseModeGraphic(eModeDapHandU);
      if (player == cMan) Mouse.UseModeGraphic(eModePointer); } }
else { Mouse.UseDefaultGraphic (); }

Room multiple hotspot entryways Repeatedly Execute:

  // script for Room: Repeatedly execute
if (Hotspot.GetAtScreenXY(mouse.x, mouse.y) == hrighthall) {
    if (player == cWoman)  Mouse.UseModeGraphic(eModeDapHandR); 
    else if (player == cMan)  Mouse.UseModeGraphic(eModeUsermode2); }

if (Hotspot.GetAtScreenXY(mouse.x, mouse.y) == hlefthall) {
    if (player == cWoman)  Mouse.UseModeGraphic(eModeDapHandL); 
    else if (player == cMan)  Mouse.UseModeGraphic(eModeUsermode3); }

if (Hotspot.GetAtScreenXY(mouse.x, mouse.y) == hdownstairs) {
    if (player == cWoman)  Mouse.UseModeGraphic(eModeDapHandD); 
    else if (player == cMan)  Mouse.UseModeGraphic(eModeUsermode5); }

#13
How do I make a transparent border? I created a screensize background and layered my inventory window on top of the transparent background and then saved as a .png. It's not working though. 
#14
Interesting about the background with a transparent border.  I am going to try that.
#15
Can anyone help me with this?  This room has multiple directional hotspots.  When a gui is open, in this case the inventory gui or the interface gui, if the mouse rolls over one of the hotspots while the gui is open, it picks up hotspot and changes the mouse cursor, disregarding the mouse for the gui.  How can I stop this from happening.  See video for an example.

https://youtu.be/R_aq8aiVV4M
#16
Haunting At Cliffhouse is a traditional point and click adventure game.  It was created in 2012 and was sold through my website and also on the defunct Just Adventure website. In 2021, I decided to bring it back and it can now be purchased on the Steam website. 

You play as Sarah Blake and your husband has lost his life in a tragic accident. Your life seems pointless and without direction.  Lost in your sadness, you find an invitation to Cliffhouse Bed and Breakfast, a sanctuary of peace and serenity in your time of grief. It seems like an idyllic retreat from the world... a place to unwind, relax and let go of the misery that haunts you. But from the moment you ring the check-in bell, you are thrown into a world of mystery, family secrets and tragic history that will take you through time to unravel the buried scandals of the long-dead family dynasty who shaped the very coastline on which you stay. 

You can find it here: https://store.steampowered.com/app/1575290/Haunting_At_Cliffhouse/
#17
Hi, I think option 1 is the best solution.  I don't think producing lots more images is really worth it.  At this scene, the player is going to want to get into that shack and will not be spending much time looking at smoke.🙂   Can you start off with changing maybe just 5 images so that I can take a look and see if I like it better?  Before you change everything.
#18
Hi, I've been out of pocket today so just now able to respond. This is amazing! I love it. I would like to see it somewhat pixelated, a little more transparent and moving slower if this all it not hard to do.
This whole project has been a challenge. I'm not reproducing any of the rooms, it would cost too much, but I have worked magic to get animation going.  I mean magic like creating pieces of a room as objects and overlaying them on the background.  What you just did here. :) I've been having lots of fun with it all. :)
#19
@RootBound thank you very much for your offer. I'd like to see what Rik comes up with.
#20
@Rik_Vargard would you like me to send you the two backgrounds?
SMF spam blocked by CleanTalk