Graal Forums  

Go Back   Graal Forums > Graal V6 forums > Bug Report
FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
Thread Tools Search this Thread Rating: Thread Rating: 13 votes, 4.69 average. Display Modes
  #1006  
Old 04-20-2011, 10:04 AM
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 Jiroxys7 View Post
If you say2("so");
__________________
Reply With Quote
  #1007  
Old 04-20-2011, 12:17 PM
Jiroxys7 Jiroxys7 is offline
Hazard to Graal
Jiroxys7's Avatar
Join Date: Apr 2009
Posts: 343
Jiroxys7 will become famous soon enough
Quote:
Originally Posted by cbk1994 View Post
<img>
yeah i kno.
__________________
MY POSTS ARE PRONE TO EDITS!
Reply With Quote
  #1008  
Old 04-20-2011, 01:15 PM
MrOmega MrOmega is offline
One More Time
MrOmega's Avatar
Join Date: Aug 2010
Location: TN, USA
Posts: 631
MrOmega is an unknown quantity at this point
Send a message via AIM to MrOmega Send a message via MSN to MrOmega Send a message via Yahoo to MrOmega
Quote:
Originally Posted by Jiroxys7 View Post
yeah i kno.
I somewhat lol'd
__________________
Time is the fire in which we burn...
Up, Up, Down, Down, Left, Right, Left, Right, B, A, Select, Start! Now I got 99 LIVES!!!
Reply With Quote
  #1009  
Old 04-20-2011, 04:55 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Stefan View Post
The volume depends on the position of the npc and the PLAYSOUND parameters, may be thats the problem?
It doesn't seem to be the problem, no. The sound plays fine when the NPC is visible. It does not play at all (or with a volume level of 0, who knows) when the NPC is invisible. Example code:
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
setImg("block.png");
  
setShape(13232);
}

function 
onPlayerTouchsMe() {
  
this.hide(); // take this out and the sound works
  
with (findImg(200)) {
    
thiso.x;
    
thiso.y;
    
ani "swim";
  }


Quote:
Originally Posted by Stefan View Post
Having an example (server name, level name, script/weapon/command) would help
I'll set something up for you and then edit the post soon-ish.

Edit: It's on Atlantis, level name is at_v6_bug.nw. The level contains some bushes to also show the first bug (sound not playing) and then a block showcasing the crash bug. Touch the block to make the gani play, which in turn makes Graal crash. Block's class is "v6_bug", you can play around with that. The gani I used is "at_leaps2" in case you want to check that out. If you want to give the first bug a try, comment out line 164 in the "object" class (that's the hide() call); you'll then see that the sound plays

Also, while you're at it: mind restarting Atlantis' GServer? Maybe you remember, we're having some problems with a GMap and you suggested a restart, but apparently only you can do it.


Edit²: I've encountered another strange bug where I'm creating a GUI control like so:
PHP Code:
  new GuiScrollCtrl("PauseBackground") {
    
0;
    
width  GraalControl.width;
    
height GraalControl.height;
    
    
profile           GuiBlueScrollProfile;
    
useOwnProfile     true;
    
profile.modal     false;
    
profile.border    0;
    
profile.bitmap    "";
    
profile.fillcolor = { 000128 };
    
    
horizSizing "width";
    
vertSizing  "height";
  } 
And instead of filling the whole client window, it's offset a couple pixels and smaller than GraalControl. When changing either x, y, width or height, the control gets its "real" position and size.

Edit³: More info on the GUI control bug: this only seemed to happen to the second control of two controls being created the same way (as shown above). I switched them in my code (so the former second one now gets created first) and both of them work perfectly fine now. I don't know why...
__________________

Last edited by Crow; 04-20-2011 at 07:10 PM..
Reply With Quote
  #1010  
Old 04-21-2011, 07:40 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 Crow View Post
Edit: It's on Atlantis, level name is at_v6_bug.nw. The level contains some bushes to also show the first bug (sound not playing) and then a block showcasing the crash bug. Touch the block to make the gani play, which in turn makes Graal crash. Block's class is "v6_bug", you can play around with that. The gani I used is "at_leaps2" in case you want to check that out. If you want to give the first bug a try, comment out line 164 in the "object" class (that's the hide() call); you'll then see that the sound plays
Interestingly the two problems are quite different but are just 2 lines separate from each other in the code:
- it was first adding the showimgs to the display list and then animating them (possibly deleting the showimgs while animating so that it's crashing when displaying them)
- when the npc was invislbe then it was only adding the showimgs to the display list (and displaying them) but wasn't animating them
Both problems are fixed in the next version which should be released sometime this weekend.
Reply With Quote
  #1011  
Old 04-21-2011, 07:51 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Thanks a bunch!
__________________
Reply With Quote
  #1012  
Old 04-24-2011, 01:31 AM
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
A new version 5.327 has been uploaded to http://www.graalonline.com/downloads...al_windows.zip :
- Doesn't freeze/crash on closing anymore
- Doesn't redownload files on each login anymore
- Fixes a bug that could crash the game on login when a server uses the default weapons (Bow, Bomb etc.)
- Correctly animates showimgs even if the NPC which is showing them is itself not visible
- Doesn't crash anymore when a gani animation is hiding showimgs
Reply With Quote
  #1013  
Old 04-24-2011, 01:39 AM
Knux Knux is offline
WEREDUCK
Knux's Avatar
Join Date: Aug 2007
Posts: 241
Knux will become famous soon enough
Quote:
Originally Posted by Stefan View Post
A new version 5.327 has been uploaded to http://www.graalonline.com/downloads...al_windows.zip :
- Doesn't freeze/crash on closing anymore
- Doesn't redownload files on each login anymore
- Fixes a bug that could crash the game on login when a server uses the default weapons (Bow, Bomb etc.)
- Correctly animates showimgs even if the NPC which is showing them is itself not visible
- Doesn't crash anymore when a gani animation is hiding showimgs
I'm too lazy to check, so, is there an official release date for V6?
__________________

Supporter of G2K1 revision. Even though it never will be what it was..
Reply With Quote
  #1014  
Old 04-24-2011, 01:40 AM
Matt Matt is offline
iZone Administrator
Matt's Avatar
Join Date: Apr 2005
Location: United States
Posts: 2,690
Matt is a jewel in the roughMatt is a jewel in the rough
Thank you !
__________________
Need Playerworld or Account support?
GraalOnline/Toonslab Support Center
Reply With Quote
  #1015  
Old 04-24-2011, 02:11 AM
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 Knux View Post
I'm too lazy to check, so, is there an official release date for V6?
Once everyone is happy with v6 (or almost everyone)
Reply With Quote
  #1016  
Old 04-24-2011, 11:03 AM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Stefan View Post
Once everyone is happy with v6 (or almost everyone)
So far, I am almost happy with v6. I'd really like a statement from you: why don't you reimplement saved window positions for Graal's main window? Cascading windows are tons better than that mouse stuff, but saved positions for both the main window and the playerlist are things I consider as required features.
__________________
Reply With Quote
  #1017  
Old 04-25-2011, 02:23 AM
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
!!!!
Playerlist window position and size is saved and restored
!!!!
Please test and check if it's fine now
Reply With Quote
  #1018  
Old 04-25-2011, 02:38 AM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by Stefan View Post
!!!!
Playerlist window position and size is saved and restored
!!!!
Please test and check if it's fine now
Also something I had on Login 2 was for PM windows and the profile window to show centered in your screen, I think it's much nicer to read PMs if they are centered, would be nice to see that on the regular login server.

Another thing I'd like to see is that PM windows and profile window doesn't hide behind the graal window when you click off of it. Sometimes I like to keep PMs open but still walk around on Graal, and same for profile windows (in case I need to copy down their Graal###### account or so). Some option to always show windows on top of the window stack should be added for external windows I think, I mentioned this on the first page though.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #1019  
Old 04-25-2011, 03:06 AM
Tim_Rocks Tim_Rocks is offline
a true gentlemen
Tim_Rocks's Avatar
Join Date: Aug 2008
Location: USA
Posts: 1,863
Tim_Rocks is a splendid one to beholdTim_Rocks is a splendid one to beholdTim_Rocks is a splendid one to beholdTim_Rocks is a splendid one to behold
For some reason when i start Graal.exe the window bumps all the way over to the middle of the screen. Heres a screen shot.



Edit: also my desktop icons got re-arranged (very annoying)..
__________________
Reply With Quote
  #1020  
Old 04-25-2011, 03:22 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
It seems like the main Graal window opens in a random location every time I start it, could you get it to save the position too? I will add that it so much better than opening on the mouse position though.
__________________
Quote:
Reply With Quote
Reply

Tags
graal v6, windows

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

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 11:57 AM.


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