Graal Forums  

Go Back   Graal Forums > Graal V6 forums > Questions about V6
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
  #1  
Old 11-02-2009, 05:01 AM
knightfire35 knightfire35 is offline
Registered User
Join Date: Jul 2008
Posts: 283
knightfire35 is on a distinguished road
Error message

Hello, lately I keep getting this error message. It happens randomly every hour or so, and I'm not sure what it means or how to fix it. I did try re-installing the client and it did not help.

Here is the error message that comes up:

http://i251.photobucket.com/albums/g...aalProblem.jpg

Thanks for any help that can be added.
Reply With Quote
  #2  
Old 11-02-2009, 05:36 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Does it happen on other servers?
__________________
Quote:
Reply With Quote
  #3  
Old 11-02-2009, 08:04 PM
Dragonosteel Dragonosteel is offline
Registered User
Join Date: Jul 2009
Posts: 62
Dragonosteel has a little shameless behaviour in the past
I get this error occasionally too. Only seems to happen on UN.
Reply With Quote
  #4  
Old 11-02-2009, 08:26 PM
EclipsedAngel EclipsedAngel is offline
Lemmy Koopa (Koopalings)
EclipsedAngel's Avatar
Join Date: Nov 2005
Posts: 338
EclipsedAngel has a spectacular aura about
Same here.
__________________
Reply With Quote
  #5  
Old 11-02-2009, 08:33 PM
Door Door is offline
Empress Door the Unhinged
Door's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 849
Door is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to behold
ME TOOOOOOOOOOOOOOOOOOOO kept forgetting to mention it, so I'm glad someone else did!
__________________
Reply With Quote
  #6  
Old 11-02-2009, 11:08 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
I get it all the time, and not just on UN.
__________________
Reply With Quote
  #7  
Old 11-02-2009, 11:45 PM
LoneAngelIbesu LoneAngelIbesu is offline
master of infinite loops
LoneAngelIbesu's Avatar
Join Date: May 2007
Location: Toldeo, Ohio
Posts: 1,049
LoneAngelIbesu has a spectacular aura aboutLoneAngelIbesu has a spectacular aura about
Send a message via AIM to LoneAngelIbesu
I tend to get the GRAAL3DENGINE.DLL errors when there are badly scripted light effects, but sometimes just scripts in general when I'm scripting something that effects my client.
__________________
"We are all in the gutter, but some of us are looking at the stars."
— Oscar Wilde, Lady Windermere's Fan
Reply With Quote
  #8  
Old 11-03-2009, 02:56 AM
knightfire35 knightfire35 is offline
Registered User
Join Date: Jul 2008
Posts: 283
knightfire35 is on a distinguished road
I played on N-Pulse for a while and didn't receive an error. From my experiences, it seems to only be on Unholy Nation, but I'm not certain.

I'm glad I'm not the only one experiencing it though.
Reply With Quote
  #9  
Old 11-03-2009, 03:16 AM
LordSquirt LordSquirt is offline
|Mêrçy|
LordSquirt's Avatar
Join Date: Dec 2008
Location: NY
Posts: 958
LordSquirt is a name known to allLordSquirt is a name known to allLordSquirt is a name known to all
I get it on all servers as well.
Reply With Quote
  #10  
Old 11-04-2009, 03:28 PM
SwimChao SwimChao is offline
UN Manager
SwimChao's Avatar
Join Date: Feb 2009
Posts: 486
SwimChao is just really niceSwimChao is just really nice
I don't play on other servers, but I can definitely say it happens on UN.
__________________
People wake up hatin' and they ain't even brushed they teeth yet.
Reply With Quote
  #11  
Old 11-04-2009, 04:02 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Well I know you can cause those errors by destroying a GUI Object than recreating it in the same block of code.

I.e:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
onCreateGUI();
}

function 
onCreateGUI() {
  if (
isObject(lolwindow)) lolwindow.destroy();
  new 
GuiWindowCtrl(lolwindow) {
    
30;
    
30;
    
width 100;
    
height 100;
  }

__________________
Quote:
Reply With Quote
  #12  
Old 11-04-2009, 04:15 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Yes recreating GUI controls is crashing v5, I'm not sure why a lot of servers are doing that. That "window.destroy()" can be removed.
If you want to make sure that the window looks ok even when creating it again, just make sure to add "visible = true;" or so when you have stuff that was making it invisible.
Reply With Quote
  #13  
Old 11-04-2009, 11:40 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by fowlplay4 View Post
Well I know you can cause those errors by destroying a GUI Object than recreating it in the same block of code.
Unrelated, but I'm fairly certain isObject() expects a string.

PHP Code:
if (isObject("MyWindow")) { 
If not, Tig is a liar.
__________________
Reply With Quote
  #14  
Old 11-04-2009, 11:52 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Quote:
Originally Posted by cbk1994 View Post
Unrelated, but I'm fairly certain isObject() expects a string.

PHP Code:
if (isObject("MyWindow")) { 
If not, Tig is a liar.
isObject is expecting a string, but if you pass an object then it will use the name of the object, so it should work if the object is already existing
Reply With Quote
  #15  
Old 11-04-2009, 11:58 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
http://forums.graalonline.com/forums...hp?t=134256378

It doesn't crash Graal though, it just freezes it until you close the error.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 12:08 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.