Adventure Game Studio

AGS Support => Advanced Technical Forum => Topic started by: MadReizka on Mon 01/12/2003 16:52:22

Title: Error
Post by: MadReizka on Mon 01/12/2003 16:52:22
---------------------------
Illegal exception
---------------------------
An exception 0xC0000005 occured in ACWIN.EXE at EIP = 0x0040D2DB ; program pointer is +6, ACI version 2.56.627, gtags (0,19)

AGS cannot continue, this exception was fatal. Please note down the numbers above, remember what you were doing at the time and notify CJ on the Tech forum.

(Global script line 50)


Most versions of Windows allow you to press Ctrl+C now to copy this entire message to the clipboard for easy reporting.
---------------------------
OK  
---------------------------

And here is the global script line 44 - 55:  
Quotefunction on_mouse_click(int button) {
 // called when a mouse button is clicked. button is either LEFT or RIGHT
 if (IsGamePaused() == 1) {
   // Game is paused, so do nothing (ie. don't allow mouse click)
 }
 else if (button==LEFT) {
   ProcessClick(mouse.x, mouse.y, GetCursorMode() );
 }
 else {   // right-click, so cycle cursor
   SetNextCursorMode();
 }
}

And all of the scripts were made by the program itself.
And the error message came when I clicked the hero char with any mouse modes (except walk)

Title: Re:Error
Post by: MadReizka on Mon 01/12/2003 17:23:40
And I am using version 2.56d
Title: Re:Error
Post by: Pumaman on Mon 01/12/2003 20:43:26
That's some sort of text rendering problem.

Have you changed the interactions for the main character, or are they still the defaults?

Have you changed global messages 997-999?

Have you imported any fonts?
Title: Re:Error
Post by: on Tue 02/12/2003 07:14:02
Yes, I imported fonts.
Title: Re:Error
Post by: Pumaman on Tue 02/12/2003 22:46:37
Well, could you try deleting the fonts you imported ("Revert to defaults" button) and see if that fixes the problem.