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 - 00jon00

#1
 :'( :'( :'(An earlier post asked if the ags source code was safe...It's not, I'm able to freely open the ags source code using a Visual C++, I can edit and delete...I won't because poor CJ slaved to make us happy, and I wouldn't do that.  I just thought that I would inform my fellow agsers that in order to access the code I just have to right click on ags, then click Visual C++.    :'( :'( :'( :'( :'( :'( :'(
#2
General Discussion / Spy's in the forums?
Wed 16/06/2004 07:50:46
What if there is spys in the forum?  Does CJ know?  If he does...why would he do this to us...I'm scared for my sanity!
#3
General Discussion / Funny bumper stickers...
Tue 15/06/2004 09:10:26
check this out..some of 'em are pretty funny:
BumperQuotes


---sorry about that lol I typed http:// twice---


The link works now 8)
#4
General Discussion / 3D GameStudio tutorials
Fri 11/06/2004 08:25:12
Does anybody out there know of any good tutorials on level and character design using 3D GameStudio?
#5
General Discussion / Spyware hunt...
Mon 07/06/2004 09:12:31
Ok, I'm extremely sick of Spyware in all of its forms (Malware, trackware, cookiecrap, thiefware, IE Hijacker, etc) I'm proud to announce that I am writing some software that will take spyware...debug it and get a bunch of info (i.e. sending comps IP address, etc) and then send it back with a virus...I don't care if its illegal, It's just a simple case of Computer self-defense.Ã,  (a.k.a.-"They started it!") Wish me luck!
#6
Okay, this sounds stupid...I can't get a download to work on my website.  I tried
<a href="Just Another Day Demo.zip">Just Another Day (demo).zip</a> But when you click on it, it opens up a "page" with the folder and gives you text? Can anybody help out lol?
#7
General Discussion / the AGS forums
Fri 04/06/2004 15:08:18
Ok, I  find my self on the forums everyday...More often then on AGS it's self.  what about you guys? *need to get away*
#8
General Discussion / Dang, my life sucks
Wed 02/06/2004 12:57:07
well, deleted a bunch of crap off the desktop....thinking about checking my laptop again....never did get to bed....the freak'n parakeets are driving me crazy-they wont shut up....my foot hurts....I don't know why I'm complaining to you guys(Sorry)... my theifing neighbor needs to be shot...anybody up for some frosted flakes?
#9
General Discussion / I HATE spyware!
Wed 02/06/2004 12:22:36
Man, it hasn't even been a day since my last scan and I already have 381 things of spyware on my desktop..thankfully my laptops clean...well better start deleting...anybody know of a really really good(freeware) firewall?
#10
General Discussion / Bridge.dll
Wed 02/06/2004 11:20:18
I know, this probably doesn't belong here but....every time I boot up my desktop it brings up an error saying that I'm missing: Bridge.dll does anybody know how to fix this...with out Fdisking my Hard drive and or re-installing xp
#11
General Discussion / Webpage or not
Wed 02/06/2004 06:10:12
You see, I'm thinking about making a webpage to "promote" my games and other crap, but I'm not sure if I should...What do you think?
#12
 I'm just curious...Post what states your from (in)..I guess I'll start...

Good ol' UTAH!!!!!!!!!!!!
#13
General Discussion / RPG style games
Sat 29/05/2004 21:23:50
Now, don't get me wrong, I will never leave AGS but you guys may want to have a look at a program that I'm messing with called RPG Toolkit Development System.Ã,  It's pretty nice and 100% free.Ã,  You can make RPG Style games with it and its not that hard to use.Ã,  Just a though lol
#14
Does anyone here know if you can make 3D backgrounds for AGS using Gmax???

I've used Gmax a lot, but that has only been for make planes for fs2004...
#15
General Discussion / Yesterday???
Sun 28/03/2004 07:26:08
Man, my head kills, I don't remember what I did yesterday, I can't find my pants, and my girlfriend is being very weird??? I need help.
#16
Ok, I need a decision... My Girlfriend and I are having an argument...I say that Xbox is better, she says that PS2 is better.....What do you guys think???

ps. I'm not saying Xbox is better because I have one, I've played both systems....
#17
General Discussion / Music File
Wed 17/03/2004 00:44:02
This is probably a stupid question...Ok, I need a music file for my game, but it is a WMA (Windows media audi file)Is there anyway I can convert it into a MP3 or WAV? Preferably a MP3
#18
Advanced Technical Forum / Custom Quit GUI
Tue 16/03/2004 04:53:13
Ok, this is stupid...I've created a billion-well alot-of quit guis, and they all worked, this one when you click on any of the buttons they don't do anything??? What do I keep over looking lol? Here's the script..Smack me when you find my stupid mistake please 8):

if (interface == ICONBAR) {
   if (button == 4) {  // show inventory
     show_inventory_window();
   }
   else if (button == 5) {   // use selected inventory
     if (character[ GetPlayerCharacter() ].activeinv >= 0)
       SetCursorMode(4);
   }
   else if (button == 6)    // save game
     SaveGameDialog();
   else if (button == 7)   // load game
     RestoreGameDialog();
   else if (button == 8)   // quit
     GUIOn(QUITGUI);
   else if (button == 9)    // about
     Display("Just Another Day[[Copyright (c) 2001-2005 Jonathan Hayes");
 }  // end if interface ICONBAR

 if (interface == INVENTORY) {
   // They clicked a button on the Inventory GUI
   
   if (button == 1) {
     // They pressed SELECT, so switch to the Get cursor
     SetCursorMode (MODE_USE);
     // But, override the appearance to look like the arrow
     SetMouseCursor (6);
   }
   
   if (button == 2) {
     // They pressed LOOK, so switch to that mode
     SetActiveInventory(-1);
     SetCursorMode(MODE_LOOK);  
   }
   if (button == 3) {
     // They pressed the OK button, close the GUI
     GUIOff (INVENTORY);
     SetDefaultCursor();
   }

   if ((button == 4) && (game.top_inv_item < game.num_inv_items - game.num_inv_displayed)) {
     // scroll down
     game.top_inv_item = game.top_inv_item + game.items_per_line;
   }
   if ((button == 5) && (game.top_inv_item > 0)){
     // scroll up
     game.top_inv_item = game.top_inv_item - game.items_per_line;
   }
   if (interface == QUITGUI) {
Ã, Ã, Ã,   if (button == 0) {
Ã, Ã, Ã,     QuitGame (0);
Ã, Ã, Ã,   }
Ã, Ã, Ã,   if (button == 2) {
Ã, Ã, Ã,     GUIOff (QUITGUI);
Ã, Ã, Ã,   }
Ã, Ã, Ã,   if (button == 1) {
Ã, Ã, Ã,     Display("WHAT!? ARE YOU TRYING TO CHEAT!!! Save often");
Ã, Ã, Ã,     GUIOff (QUITGUI);
Ã, Ã, Ã,   }
     }    
 }

Oh, and that smiley-in the script-is supposed to be an 8...
#19
Advanced Technical Forum / Plugin(s) issue
Tue 16/03/2004 02:58:54
I don't know if this thread is 'legal' here, if it isn't Im sorry...Otherwise......I want to download some of the plugins (CCS, And the rain/snow one), but None of the links work...Network Error
Unable to read URL from host geocities.com: no response from server
And save target as also won't work. Is there anywhere else I can get them?
#20
Advanced Technical Forum / Read error
Wed 10/03/2004 23:22:29
When I try to load room 6 so I can edit it, it gives me an error message:
---------------------------
AGS Editor
---------------------------
Read error decompressing image - file is corrupt
---------------------------
OK  
---------------------------
When you click 'ok', it kicks you out of AGS.  If you just test the game then it brings up this error when (and only) in room 6:
---------------------------
Adventure Game Studio
---------------------------
An internal error has occured. Please note down the following information.
If the problem persists, contact Chris Jones.
(ACI version 2.60.693)

Error: Out of memory: failed to allocate -56112 bytes (at PP=200)

---------------------------
OK  
---------------------------
It was working just fine a little while ago, but then I re-booted my pc and its started this...Does anybody know whats going on? (I'm not much of a computer wiz...Sorry)
SMF spam blocked by CleanTalk