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

#421
i can`t understand the site that comes up is the link......down
#422
Thanks Nihilist.........

The 2nd bug you found has been fixed and upload to the site.....
it was connected to the close screens......i did`nt allow for the fact that someone might use them together when you can`t see the playercharcter......
any how cheers for your help..............

also in the light of WanderLady saying it was vulgar......
THIS VERSIONS cert 18 .......should i make a cert PG version...tame it down......

if there enough call for it i`ll spend the time altering the existing game
so theres 2 version......you can then take your pick


cheers foz
#423
Sorry  ....WanderLady....if you where offended..........
i have a bit of a warped outlook on things...and tend to push things further than i should.......if you have`nt finished the game its probaly best as it only gets worse as the game goes on.............(specialally the ending sequence.......I was`nt gonna push it that far ...but did..).
as with all media if you don`t like it turn over....

......it might not appeal to everyone.....but hopefully theres a place for everything in this diverse world.....

LATERS FOZ......
#424
I have now UPDATED MY SITE with a WINZIP....ZIP file.......

also  thanks to vel,duzz,peaceman.........

I have fixed all the bugs you have found and the latest version is on the site for DOWNLOAD....

cheers guys
#425
Cheers peaceman.......
I did the cutscenes.....as animations...using sprites and background animation scripting........

I`ll rectify that bug you pointed out.....

Thanks...
FOZ
#426
Cheers alexis............But,

A few BUGS have been corrected since you ZIPPED this.......
I have UPDATED my site and will add a normal ZIP file as well as the WINACE file.......and i will continue to update site if anymore BUGS are found......

http://www.incarelectrics.co.uk/game.html

Thanks anyway....ALEXIS..
#427
Just make a new character for the window animation.......with a talk view........move the relevant character to the room at the point you want the pop up to appear...........and display messages tagged to that character....and that will do what you want it to...

foz


#428
sorry ......minimi......i PM`d you because you where one of the people that had replied to the screenshots and thought you might be interested to be one of the first to try my game........

...this is the first game i have made it took a long time.....and is complete...not a short 2 rooms or a half finished demo......


i will not trouble you again.......
#429
Critics' Lounge / Re:The Find: The new Percy
Mon 01/09/2003 21:11:48
...your character graphics are better than most  i`ve seen ....including my own......so keep up the good work and make the scripting as good.....with graphics like that you need to make every element of the game pucker.......
need any help i`m good at scripting also gui stuff......give me a
shout....
You can see a sample of my work at.....

http://www.incarelectrics.co.uk/game.html

FOZ
#430
...........good backgrounds mate......make the play game as good as you graphics and you can`t go wrong....
#431
Looks sweet...........
#432
FINISHED AT LAST SEE COMPLETED GAME  .......HOPE YOU ENJOY......
LET ME KNOW WHAT YOU THINK.....ALL COMMENTS WELCOME>>>

http://www.incarelectrics.co.uk/game.html


FOZ
#433
I `ll help..........i had a shortage of bugtesters....hopefully my game is`nt that full of bugs....

http://www.incarelectrics.co.uk/game.html


email me when you have something.....fozbee@ntlworld.com

FOZ
#434
 Ã,  :-[

See temp site:

http://www.freewebs.com/fozbee/

Here it is....FLASHBAX ...a game thats taken 6 months of hard work....
I never bothered doing demos or teasers as i thought i would concentrate on making it as good as possible......
Please visit the link.....

This is Ã, the last UPLOAD of this..

http://www.freewebs.com/fozbee/

or

http://www.fozbee.co.uk/FB.exe


I have UPDATED the interface to the new one that will be used in the prequel.

And fixed all the bugs i know about and corrected some of the things that have been brought up.

I will get cracking more seriously on the prequel.

Thanks for the support...even thou its a bit of a risky game.

I hope everyone has enjoyed it.

and i even stop using loads of ............................`s Ã, 
that should please VEL.

laters
MR FOZBEE
???
#435
if your scipt does other things after the movecharacterblocking command............the best thing to do is put in this line after the movecharacterblocking :-

MoveCharacter(EGO,105,128);
while (character[EGO].walking!=0) Wait(1); //waits for character to finish.
PlaySound(15);
AnimateCharacter(EGO,7,0,0);
ObjectOn(3);PlayMusic(7);
while (character[EGO].animating==1) Wait(1);
MoveCharacter(EGO,68,138);
while (character[EGO].walking!=0) Wait(1);
FaceCharacter(EGO,DRD);


I had a simialr problem and sorted it out in this manor...

foz
#436
General Discussion / WEBSPACE...free
Sat 30/08/2003 03:37:56
does anyone know where i can dump my zipped game.......2.5mb....as my webspace is about to expire.......

ive spent ages making the game ....and i hit a brickwall.........

foz
#437
Almost comleted......
graphics ....98%
coding .......98%
Sfx.............80%
Music.........50%

14 rooms.....6 characters.....and loads of puzzles....

Its taken longer than i thought it would....but the game has grown from a 4 room game into a 14 room game with intro...and ending cutscenes....so hopefully all my hard work should pay off....

just polishing it up and sorting out bugs and stuff at the moment...

should be finished and downloadable on the 1.9.03
ps don`t hold me to that thou....ai `ll do my best.

cheers

foz
#438
Advanced Technical Forum / Re:save game...gui
Thu 07/08/2003 23:38:57
Cheers  spyros.....ive still some tweaking to do but your help has pushed me in the right direction.....
thanks again..
#439
Advanced Technical Forum / save game...gui
Thu 07/08/2003 19:07:38
I`m having trouble with my custom save gui.....
can any one help.....
i want it to save a file......but only if there is text in the textbox....
at the moment if you click save it save it with a blank title.....
heres the script:-
if (interface==4) {
// if save interface

if (button==1) {
index=ListBoxGetNumItems(4,1);
// Count saved games  
if (index<20) {
// if less than 20
ListBoxGetItemText(4,1,ListBoxGetSelected(4,1),text);

// Get the typed text

InterfaceOff(4);
// Close interface
Wait (2);
SaveGameSlot(savegameindex[index],text);}
// Save game (text as description)

if (index>19) {
// if saved games are 20

index=ListBoxGetSelected(4,1);
// Get the selected save game

GetTextBoxText(4,0,text);
// Get the typed text
Wait(10);
InterfaceOff(4);
// Close the interface
InterfaceOff(7);
SaveGameSlot(savegameindex[index],text);}
}
if (button==2) {
index=ListBoxGetNumItems(4,1);
// Count saved games  
if (index<20) {
// if less than 20

GetTextBoxText(4,0,text);
// Get the typed text

InterfaceOff(4);
// Close interface
Wait (10);
SaveGameSlot(index+1,text); }
// Save game (text as description)

if (index>19) {
// if saved games are 20

index=ListBoxGetSelected(4,1);
// Get the selected save game

GetTextBoxText(4,0,text);
// Get the typed text
Wait(10);
InterfaceOff(4);
// Close the interface
InterfaceOff(7);
SaveGameSlot(savegameindex[index],text);}
}
if (button==3) {
InterfaceOff(4);
InterfaceOff(7);
// if cancel is pressed close interface
}
#440
Advanced Technical Forum / Re:Regions
Fri 01/08/2003 23:18:58
cheers......i`ve downloaded latest version...which has that option thanks for your help
cheers
SMF spam blocked by CleanTalk