Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   Bug Report (https://forums.graalonline.com/forums/forumdisplay.php?f=193)
-   -   Windows v6 beta test (https://forums.graalonline.com/forums/showthread.php?t=134257598)

Luda 12-25-2010 05:36 AM

The newest client is freezing for me aswell. Sucks cause i'm stuck with the other one and transparency issues on it is ****ed

Crono 12-28-2010 06:26 AM

nvm also have the freezing issue

Unkownsoldier 12-29-2010 04:13 PM

Freezing issue sucks please fix. Also how come we don't have fullscreen yet? Thats a necessity when I play.

oo_jazz_oo 12-30-2010 11:31 AM

Just discovered something.

Now, I don't know much about particle emitters and stuff, but I found a problem with the snowfall on UN.

Basically, the script has the particle image changing every .5 seconds, so it changed the image for each new snowflake.
On v5, changing the image of the particle would only change it for new particles...

On v6, it is changing the image for every particle, ones already created, and new ones.

Not sure if this is a glitch, or if it was a glitch in v5.
The script changing the image of said particle is:
PHP Code:

findimg(200).emitter.particle.image temp.newimg


Luda 01-01-2011 12:31 AM

Is it still freezing for anyone else? I was using the older version before this update because it ran perfectly well for me. Now I can't see to start it up at all so I downloaded the new one and can't get past the login screen without freezing.

Crono 01-01-2011 07:35 AM

freezing for me too

DustyPorViva 01-01-2011 07:36 AM

Any chance default maps are going to be fixed? Automapping sucks.

Unkownsoldier 01-01-2011 10:36 PM

Quote:

Originally Posted by Luda (Post 1619295)
Is it still freezing for anyone else? I was using the older version before this update because it ran perfectly well for me. Now I can't see to start it up at all so I downloaded the new one and can't get past the login screen without freezing.

this

MrOmega 01-04-2011 06:45 AM

Not 100 % sure if this is a bug or I'm just doing something wrong, but with GuiTextEditCtrl's when I use a custom profile and use
'textoffset = { x, y};' only the y value of the text is being adjusted and the x does not move.

Tigairius 01-04-2011 06:54 AM

Quote:

Originally Posted by MrOmega (Post 1620240)
Not 100 % sure if this is a bug or I'm just doing something wrong, but with GuiTextEditCtrl's when I use a custom profile and use
'textoffset = { x, y};' only the y value of the text is being adjusted and the x does not move.

Please provide more script.

Admins 01-04-2011 01:24 PM

Quote:

Originally Posted by oo_jazz_oo (Post 1618886)
Just discovered something.

Now, I don't know much about particle emitters and stuff, but I found a problem with the snowfall on UN.

Basically, the script has the particle image changing every .5 seconds, so it changed the image for each new snowflake.
On v5, changing the image of the particle would only change it for new particles...

On v6, it is changing the image for every particle, ones already created, and new ones.

Not sure if this is a glitch, or if it was a glitch in v5.
The script changing the image of said particle is:
PHP Code:

findimg(200).emitter.particle.image temp.newimg


It's an optimization, if you have only one particle template and only simple modifiers then it will try to draw all particles at once instead of drawing it one by one. You could eventually use several particle templates (emitter.particletypes = 2, emitter.particles[1].image = ...).

Quote:

Originally Posted by ffcmike (Post 1617539)
Perhaps not so much of a bug but I knew that within V5 while on a GMAP showimg type displays would not display while the parent NPC was not visible on your screen, this now seems to be the case with non-GMAP levels too in V6

It has been changed to only display stuff from NPCs which are visible. This was mainly for Era iPhone because some levels have hundreds of NPCs and the player only sees a small part of the level. The best is to use a clientside setshape() to make the NPC visible.

Quote:

Originally Posted by ffcmike (Post 1617539)
In another weapon script I had:
PHP Code:

if(dash != NULL){
  
temp.dash dash.attemptDash();
  if(
temp.dash){
    return;
  }



Using the same variable name with temp. and without and leading should be avoided. It is optimizing the use of temp. variables depending on how often you are using it inside the function. Once declaring a temp. variable all use of the variable name without the temp. will also direct to the temp. variable so you should not rely on that using the variable without a leading. before declaring the temp. variable will access the global variable.

Quote:

Originally Posted by salesman (Post 1617955)
player.dontBlock(), player.blockAgain(), and player.setShape() don't seem to work at all in v6. ;)

Those functions don't exist

Crow 01-04-2011 01:38 PM

Quote:

Originally Posted by Stefan (Post 1620266)
Those functions don't exist

Duh. That's the point! Feature request :D

ffcmike 01-04-2011 01:38 PM

Quote:

Originally Posted by Stefan (Post 1620266)
It has been changed to only display stuff from NPCs which are visible. This was mainly for Era iPhone because some levels have hundreds of NPCs and the player only sees a small part of the level. The best is to use a clientside setshape() to make the NPC visible.

This is pretty annoying for things like a spar arena displaying information both on your screen and on a level coordinate, or an NPC that displays obtained keys on your screen for within Quests, I can imagine quite alot of things that were on Classic pre-wipe being affected by this too and presumably will cause alot of issues on other servers, not impossible to re-script it so that it communicates with a weapon to handle these types of displays but for alot of scripters this will be making something that should be simple very complicated, there really should be a way to bypass this.

MrOmega 01-04-2011 07:40 PM

Quote:

Originally Posted by Tigairius (Post 1620241)
Please provide more script.

In a Control Profile I use this

PHP Code:

  new GuiControlProfile"GuiLegendsTextEditProfile")
  {
  
    
bitmap "guilegends_textedit.png"
    
border 5;
    
cankeyfocus true
    
transparency 1
    
opaque 1;
    
fontcolor = { 000255}; 
    
fonttype "Alanden"
    
fillcolor fillcolorhl fillcolorna = { 1811840255}; 
    
textoffset = { 101};
  
  } 

and as fot the actual text box. (It's in a for loop so don't mind the temp.a)

PHP Code:

      new GuiTextEditCtrl"Start_Create_Name_TextBox" temp.a)
      {
    
        
position    = { 34025 32 temp.a};
        
extent      = { 12824};        
        
profile     "GuiLegendsTextEditProfile";
        
text        temp.== 0"Unknown"temp.== 1"head0.png""body.png";
        
tabcomplete true

      } 


Admins 01-05-2011 04:22 AM

A new version (v5.314) for Windows has been uploaded to http://www.graalonline.com/downloads...al_windows.zip. It should fix the slow down problem which happens each second.

NicoX 01-05-2011 04:28 AM

Yeah it seems fixxed.

Nice.

WhiteDragon 01-05-2011 04:37 AM

Quote:

Originally Posted by Stefan (Post 1620476)
A new version (v5.314) for Windows has been uploaded to http://www.graalonline.com/downloads...al_windows.zip. It should fix the slow down problem which happens each second.

Followed by the Linux 32 and 64bit builds!!!!


...right? :D

RegretZ 01-05-2011 05:29 AM

Quote:

Originally Posted by WhiteDragon (Post 1620480)
Followed by the Linux 32 and 64bit builds!!!!


...right? :D

Oh gosh I hope so.
We need a linux update already.

Tigairius 01-05-2011 10:11 AM

Quote:

Originally Posted by Stefan (Post 1620476)
A new version (v5.314) for Windows has been uploaded to http://www.graalonline.com/downloads...al_windows.zip. It should fix the slow down problem which happens each second.

I'm still experiencing this issue on Windows XP with this version. This is my console log:
Quote:

This is a beta release of Graal. If it's not working on your computer then please download a new version from http://www.graalonline.com or check out the forums at http://forums.graalonline.com.
Scanned install files.
Scanning folder structure of I:/Program Files/NewGraal/...
Done.
Maxium texture size: 4096
Graal has been activated!
Loading tile definitions for server Login
Connecting to the game server...
Done.
Initialized OpenGL.
I'm using a NVidia Geforce 6200 video card on this computer, 2.5GB of RAM, Pentium 4 processor.

DustyPorViva 01-05-2011 10:13 AM

Sometimes my nick gets "stuck" and doesn't disappear. In fact, it's drawn separately, so when I use shownick I see my nick twice. Actually, this is happening a lot.

Admins 01-05-2011 02:20 PM

Sounds strange, is that on a server with scripted nick names?

DustyPorViva 01-05-2011 07:16 PM

Quote:

Originally Posted by Stefan (Post 1620526)
Sounds strange, is that on a server with scripted nick names?

Nope, on UN.

oo_jazz_oo 01-06-2011 03:00 AM

With the client-rc, when you double click a file in filebrowser to open it with your default program of choice...

Then you save this file, shouldn't it auto upload like the external rc does?

And you should be able to specify what folder you download to...I hate that files are downloaded to scriptfiles....

Admins 01-06-2011 03:50 AM

Yes those would be good additions, can add it to one of the next versions.

Unkownsoldier 01-06-2011 04:23 AM

Quote:

Originally Posted by Stefan (Post 1620476)
A new version (v5.314) for Windows has been uploaded to http://www.graalonline.com/downloads...al_windows.zip. It should fix the slow down problem which happens each second.

I have downloaded this, and the freezing still occurs. Also what happened to full screen?

NVIDIA GeForce 7150M / nForce 630 M

2 g ram. HP dv6707us laptop. This sux

Admins 01-06-2011 01:03 PM

Could you explain your freezing problem a little bit more detailed?

xXziroXx 01-06-2011 03:16 PM

Quote:

Originally Posted by Stefan (Post 1620772)
Could you explain your freezing problem a little bit more detailed?

From what we've been able to tell, it only happens on laptops with Windows Vista/7 and it doesn't matter how good or bad the computer specs. Both me and Crono has a fairly new top notch laptop and we still get random lag spikes every ~5 seconds or so that completely freezes the client for a split second.

I could be wrong about Crono, but this is what happens for me at least.

Tigairius 01-06-2011 03:21 PM

Quote:

Originally Posted by xXziroXx (Post 1620781)
From what we've been able to tell, it only happens on laptops with Windows Vista/7 and it doesn't matter how good or bad the computer specs. Both me and Crono has a fairly new top notch laptop and we still get random lag spikes every ~5 seconds or so that completely freezes the client for a split second.

I could be wrong about Crono, but this is what happens for me at least.

I can confirm that this happens on my Windows XP desktop now too.

Stefan: I have uploaded a video on Skills Debug in the temp folder called v6freezing.zip.

It appears that about every 0.8 seconds, it freezes for about 0.2 seconds.

Unkownsoldier 01-06-2011 04:45 PM

Quote:

Originally Posted by Tigairius (Post 1620783)
I can confirm that this happens on my Windows XP desktop now too.

Stefan: I have uploaded a video on Skills Debug in the temp folder called v6freezing.zip.

It appears that about every 0.8 seconds, it freezes for about 0.2 seconds.

It gets really annoying x.x

ffcmike 01-07-2011 12:27 AM

With the latest version I am experiencing a problem when closing the client, as soon as I click X the screen display stays frozen as it is and the client stops responding (though my account remains logged onto the server) until I right click it within my start bar and manually click "close", it only seems to be happening half the time though and entirely randomly, can't really link it to any specific conditions.

I'm also now seeing certain images such as default blue GUI buttons and certain images with a rotation effect (again strangely not all even if they've had transparency configured the same way) with opaque background as opposed to transparent that were previously fine.

oo_jazz_oo 01-07-2011 12:33 AM

Quote:

Originally Posted by ffcmike (Post 1620901)
With the latest version I am experiencing a problem when closing the client, as soon as I click X the screen display stays frozen as it is and the client stops responding (though my account remains logged onto the server) until I right click it within my start bar and manually click "close", it only seems to be happening half the time though and entirely randomly, can't really link it to any specific conditions.

I am experiencing this also, except windows sees it as "Non Responsive".
So, I have to go through the whole, right click, close, 'Program not responsing', end it, wait for it to finally close....

I'm on Windows 7, 64 bit.


On a side note:
Are we ever going to be allowed to make external windows non-maximizable, resizable, etc? Would be nice to at least have the ability to make them a fixed size and not being allowed to maximize them.

DustyPorViva 01-07-2011 12:35 AM

Aye, I've been having the freezing problem upon closing as well, though I haven't really tried with the new client.

fowlplay4 01-07-2011 12:40 AM

Quote:

Originally Posted by oo_jazz_oo (Post 1620902)
I am experiencing this also, except windows sees it as "Non Responsive".
So, I have to go through the whole, right click, close, 'Program not responsing', end it, wait for it to finally close....

I'm on Windows 7, 64 bit.

I also run into this, hell even one time I forgot I had it on then an hour or so later "Graal has stopped responding" popped up.

DustyPorViva 01-07-2011 02:41 AM

Quote:

Originally Posted by DustyPorViva (Post 1620549)
Nope, on UN.

Before you waste time pursuing this it WAS a script on UN, oddly enough. It just happened to be uploaded and enabled it on my player the same day I updated the client.

oo_jazz_oo 01-07-2011 05:23 AM

Well....v6 has worked fine up until now.

I just updated my graphics card driver software (Graphics card: ATI Radeon HD 3200 Graphics)
And now, Graal runs so slow...its unplayable. (v5 is fine, tho)

But, it appears to be running at about 2-3 frames per second, and 90% of the time, crashes...so, v6 is now unplayable for me.

Admins 01-07-2011 12:07 PM

I don't need a video, I need clientstats and game_console.log

Crono 01-07-2011 12:56 PM

1 Attachment(s)
I'm still having the freezing problem Tig described.

Intel Core2Quad Q9450 @ 3.2ghz
4GB Ram (don't think I need to get the specifics :P)
Gainward GTX275 (896MB)
500GB WD Cavier Green Power
750w Corsair PSU
Windows 7 Professional

Breakthrough edit-
When I set the CPU affinity for Graal to just 1 core on the login screen the freezing problem goes away when I connect to a server. If I set it while on a server it makes no difference.

Twinny 01-07-2011 04:04 PM

Freezing is happening to me with latest,

showscriptstats
PHP Code:

Top 50 of npcs taken most CPU time:
1. 5.15705705 Gani Setcharani (in level callidonutshop.nw at pos (5960))
2. 0.395285771 %  (in level callidonutshop.nw at pos (-137))
3. 0.390387738 %  (in level callidonutshop.nw at pos (6518))
4. 0.373974207 %  (in level callidonutshop.nw at pos (5143))
5. 0.373910208 %  (in level callidonutshop.nw at pos (146))
6. 0.368704982 %  (in level callidonutshop.nw at pos (3126))
7. 0.147380448 Weapon -F2LogWindow
8. 0.103652277 
Weapon -IRC_Installer
9. 0.102807494 
Weapon -Serverlist
10. 0.074609671 
%  (in level callidonutshop.nw at pos (52.525))
11. 0.044496155 Weapon -Serverlist_Observer 

Quote:

Originally Posted by Game Console Log
This is a beta release of Graal. If it's not working on your computer then please download a new version from http://www.graalonline.com or check out the forums at http://forums.graalonline.com.
Scanned install files.
Scanning folder structure of C:/Users/Brent/Graal-Beta/...
Done.
Maxium texture size: 8192
Graal has been activated!
Loading tile definitions for server Login
Connecting to the game server...
Done.
Initialized OpenGL.
File download: guigames_arcmessage2.png (size: 10128) done
File download: loginserver_en.po not found
File download: guiblue_scroll_noback.png (size: 2543) done
File download: login_gradient_blue.png (size: 309) done
File download: graalv4title.png (size: 32000)...
File download: graalv4title.png (size: 64000)...
File download: graalv4title.png (size: 83319)...
File download: graalv4title.png (size: 83319) done
Loading tile definitions for server Login
Connecting to the game server...
Done.
File download: guigames_arcmessage2.png (size: 10128) done
File download: graalicon_big.png (size: 322) done
File download: login_icon_classiciphone.png not found
File download: microsoft sans serif.ttf not found
Loading tile definitions for server Dev Twaina
Connecting to the game server...
Done.

Windows 7 64bit, latest drivers, 2.4GHz Quadcore, 4GB ram, Nvidia 9800GT

Admins 01-07-2011 07:05 PM

I still need more information...
- A staff can do /clientstats on you
- what kind of freezing - the game is becoming completely unresponsive and needs to be killed? when does it happen, when you open it or when playing for some time, and how long do you need to play to make that working?
- is it just becoming slow from time to time? how long is it freezing and in which intervals (each 5 seconds?)

Luda 01-08-2011 12:56 AM

It freezes to the point where you have to close it because you can't do anything, happens usually when I open the client or when I get to the playerlist screen. I've rarely gotten past that and it's worked fine. It freezes for about a minute for me then refreezes immediately after.


All times are GMT +2. The time now is 08:32 PM.

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