Graal Forums  

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

Reply
 
Thread Tools Search this Thread Rating: Thread Rating: 13 votes, 4.69 average. Display Modes
  #1201  
Old 08-22-2011, 01:04 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
Quote:
Originally Posted by Stefan View Post
TServerPlayer.attached is only true if the player is attached to the current npc, you can also use TServerPlayer.attachedtoobject to get the object to which the player is attached.
Oh well I ended up using player.attachid instead.
__________________
Quote:
Reply With Quote
  #1202  
Old 08-23-2011, 07:33 AM
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
Attributes still aren't being sent serverside. I think you can test this out on UN using their tailor tools. I can't seem to change my appearance with it because even though it looks like I changed, everyone else still sees my old look and it reverts back when I log on.

Also, if you go on UN try out the Broom script. When you get off of it it messes with your body, making it white/transparent and zooms in and out. I imagine it is having problems with sprites < 20, but this problem didn't occur in v5.
Reply With Quote
  #1203  
Old 08-23-2011, 12:50 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 ffcmike View Post
It seems selecting a different gender within the profile window doesn't cause the "send" button to appear, as such you have to enter text into one of the text boxes if you want to be able to save a different gender.
I'm confused, isn't the send-button always shown when you open your own profile?
Reply With Quote
  #1204  
Old 08-23-2011, 04:01 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Stefan View Post
I'm confused, isn't the send-button always shown when you open your own profile?
This is actually something I noticed to be fixed within the latest client, but was happening within the previous client.
Reply With Quote
  #1205  
Old 08-23-2011, 07:51 PM
Starfire2001 Starfire2001 is offline
Unholy Nation
Starfire2001's Avatar
Join Date: Dec 2010
Location: The streets.
Posts: 156
Starfire2001 will become famous soon enough
Maybe this is just me, but in V6 trying to open history for someone that I have a long pm history with literally freezes and crashes the client.
__________________
-Ph8
Reply With Quote
  #1206  
Old 08-23-2011, 08:01 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Starfire2001 View Post
Maybe this is just me, but in V6 trying to open history for someone that I have a long pm history with literally freezes and crashes the client.
It's not just you, long PM histories can take a long time to load.
Reply With Quote
  #1207  
Old 08-24-2011, 05:49 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
To explain the highlighting problem further:

1. Open a script in Client RC.
2. Highlight the text with your mouse, and hold down the button.
3. Move your mouse cursor off the script editor window.
4. Let go of the mouse button.
5. Hover over the script window, the text edit control is still in highlighting mode despite the mouse button not being held down.

There is also issues with autoindenting in MLTextEditCtrls:

1. Go to the very bottom of a script in client rc.
2. Try to write:

PHP Code:
function example() {
  
asdf();
  
asdf();
  
qwer();

For me it doesn't update the position of the cursor properly.

Video:



Double Clicking + onMouseDown

I don't think onMouseDown reports double clicks properly because it registers the mouse down three times (which makes it very annoying to check if the double-click happened in the same area as the single click) in situations where I only clicked twice within 0.3 of a second.

Two clicks in two different spots that are more than 16 pixels apart shouldn't register as a double-click either but it does.

PHP Code:
//#CLIENTSIDE
function onMouseDown(click) {
  echo(
click SPC timevar2);

My Script Workaround:

PHP Code:
//#CLIENTSIDE
function GraalControl.onMouseDown(atxtyclickcount) {
  
temp.double false;
  if (
clickcount == 2) {
    
temp.dist vectordist({mousexmousey0}, this.last_click);
    if (
temp.dist 0.5) {
      
temp.double true;
    }
  }
  if (
temp.double) {
    
onMousePressed("double");
  } else {
    
onMousePressed("left");
  }
  
this.last_click = {mousexmousey0};
}

function 
GraalControl.onRightMouseDown() {
  
onMousePressed("right");
}

function 
onMousePressed(click) {
  
// code...

Syntax Highlighting MLTextEditCtrls

Can it be changed to operate on it's own profile values? Right now it uses fontcolorhl, fontcolorlink and so on. It'd be nice to be able to set for specific types: string, keywords, and so on.
__________________
Quote:

Last edited by fowlplay4; 08-25-2011 at 02:30 AM..
Reply With Quote
  #1208  
Old 08-31-2011, 05:45 AM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
It seems there's a problem with text shadow with the latest client, for instance what produces a dark blue shadow in order to emulate default HP display in V5 is producing fully white text.

V5:


V6:


Here's what I'm doing within a class for level NPCs which also produces the same problem:

PHP Code:
temp.zoom $pref::graal::defaultfontsize/24;
temp.txt this.showtext(201this.1.5 this.hpoffxthis.this.hpoffy temp.zoom"""cb"temp.h);
temp.txt.zoom temp.zoom;
temp.txt.textshadow true;
temp.txt.shadowcolor = {001501};
temp.txt.shadowoffset = {11};
temp.txt.layer 3;
temp.txt.attachtoowner true
Reply With Quote
  #1209  
Old 08-31-2011, 10:28 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
On v6, whenever I set my characters colors to one of the new colors (indian red, slate blue, etc), then I reconnect, the colors turn to black.


Turns back into!
__________________

Reply With Quote
  #1210  
Old 08-31-2011, 10:37 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 ffcmike View Post
It seems there's a problem with text shadow with the latest client, for instance what produces a dark blue shadow in order to emulate default HP display in V5 is producing fully white text.
You should set your shadowcolor alpha to 255 instead of 1
Reply With Quote
  #1211  
Old 08-31-2011, 11:53 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 oo_jazz_oo View Post
On v6, whenever I set my characters colors to one of the new colors (indian red, slate blue, etc), then I reconnect, the colors turn to black.


Turns back into!
Yes the extended body colors are not saved yet, other players also see it as black I think.
Reply With Quote
  #1212  
Old 08-31-2011, 12:54 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
Yes the extended body colors are not saved yet, other players also see it as black I think.
v5 users do, aye.
Reply With Quote
  #1213  
Old 08-31-2011, 09:24 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Crow View Post
You should set your shadowcolor alpha to 255 instead of 1
I suppose that's probably it, so I guess alpha is now 0 - 255 rather than 0 - 1?
Reply With Quote
  #1214  
Old 08-31-2011, 09:44 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 ffcmike View Post
I suppose that's probably it, so I guess alpha is now 0 - 255 rather than 0 - 1?
I thought it was in a 0 to 255 range before, at least for shadowcolor. Could be wrong though. It definitely is now.
Reply With Quote
  #1215  
Old 09-01-2011, 02:41 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
It's 0-1 for objects (player.alpha etc.) but for gui colors you define them in an array of 4 integer values {red,green,blue,alpha} or using the name of a color like "cyan".

Quote:
Originally Posted by DustyPorViva View Post
Attributes still aren't being sent serverside. I think you can test this out on UN using their tailor tools. I can't seem to change my appearance with it because even though it looks like I changed, everyone else still sees my old look and it reverts back when I log on.
Can anyone else verify this? I haven't got problems with it yet, although I change stuff on server-side most of the time.
Reply With Quote
  #1216  
Old 09-01-2011, 09:05 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Stefan View Post
Can anyone else verify this? I haven't got problems with it yet, although I change stuff on server-side most of the time.
I've mentioned this issue multiple times, even had a post deleted for it.
Reply With Quote
  #1217  
Old 09-01-2011, 09:42 PM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
Can go to Valikorlia and use their GUI tailors to modify your character, then reconnect and your outfit will be unchanged from what it previously was.
Reply With Quote
  #1218  
Old 09-02-2011, 01:01 AM
Unkownsoldier Unkownsoldier is offline
Ignorance has no future
Join Date: Sep 2008
Posts: 1,287
Unkownsoldier is on a distinguished road
Quote:
Originally Posted by Stefan View Post
It's 0-1 for objects (player.alpha etc.) but for gui colors you define them in an array of 4 integer values {red,green,blue,alpha} or using the name of a color like "cyan".


Can anyone else verify this? I haven't got problems with it yet, although I change stuff on server-side most of the time.
This also happens to me. I asked about it a few months ago but no explination from the UN staff. Really annoying imo. The only way to fix is to load the outfit then say "view attributes" and reset all of the attributes u had and it will change for other players.
__________________
Look beyond the monitor.
Reply With Quote
  #1219  
Old 09-03-2011, 07:17 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
I'm not sure what the problem is. "Attributes" mean player.attr[] for me, which works perfectly fine for me. If you mean the extended body colors, those are of course not synchronized yet because we need to disable v5 first.
Reply With Quote
  #1220  
Old 09-03-2011, 09:48 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
A new version 6.009 has been uploaded, install it on the login server:

- Resets the recently added configuration variables on server-switch now (for projectiles and npc-on-npc hits)
- Selection in GuiTextEditCtrl is lifted when updating the text by script
- Enabled the new level (map) format for testing & debugging purposes
- Added buttons in the options for opening the screenshot folder and video folder (when you have made some) because it's hard to find them via Windows Explorer
- Saving screenshots via Alt+2 is not messing up the graphics anymore, makes it possible to change window mode and size afterwards
Reply With Quote
  #1221  
Old 09-03-2011, 10:49 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
- Enabled the new level (map) format for testing & debugging purposes
Tell me more.
Reply With Quote
  #1222  
Old 09-04-2011, 12:52 AM
Cubical Cubical is offline
Banned
Join Date: Feb 2007
Posts: 1,348
Cubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant future
Quote:
Originally Posted by Crow View Post
Tell me more.
Reply With Quote
  #1223  
Old 09-04-2011, 01:09 AM
Mark Sir Link Mark Sir Link is offline
Kevin Azite
Mark Sir Link's Avatar
Join Date: Sep 2005
Posts: 1,489
Mark Sir Link is just really niceMark Sir Link is just really nice
Send a message via AIM to Mark Sir Link
Quote:
Originally Posted by Stefan View Post
I'm not sure what the problem is. "Attributes" mean player.attr[] for me, which works perfectly fine for me. If you mean the extended body colors, those are of course not synchronized yet because we need to disable v5 first.
I think they mean updating the colors array and body/bodyimg, head/headimg, and sword/swordimg files.

When these are being changed on the clientside it doesn't save to the player (or even appear to other players)

Then when they log off and back on, their colors go back to what they were before they tried to modify them.
Reply With Quote
  #1224  
Old 09-04-2011, 01:13 AM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
Originally Posted by Mark Sir Link View Post
I think they mean updating the colors array and body/bodyimg, head/headimg, and sword/swordimg files.

When these are being changed on the clientside it doesn't save to the player (or even appear to other players)

Then when they log off and back on, their colors go back to what they were before they tried to modify them.
Stefan is in the process of fixing this.
__________________
Reply With Quote
  #1225  
Old 09-04-2011, 02:08 AM
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
Quote:
Originally Posted by Emera View Post
Stefan is in the process of fixing this.
He doesn't seem to understand what the problem is to fix.

If you change player looks via script on the clientside, it is never sent to the server, thus the players looks never actually change. The player sees the change, but no one else does and the looks are lost when you log out(and suddenly log in to your old look).

Use any tailor weapon on any server that saves player looks and you will see the problem.
Reply With Quote
  #1226  
Old 09-04-2011, 04:59 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
This script simulates the problem.

PHP Code:
//#CLIENTSIDE
function onCreated() {
  if (
client.demoed) {
    
player.chat = (player.shield == "shield2.png" "Shield saved properly." "Shield didn't save at all!");
    
client.demoed "";
    return;
  }
  
player.chat "Problem demo!";
  
player.shield "shield2.png";
  
sleep(10);
  
client.demoed true;
  
sleep(1);
  
player.chat "Reconnecting!";
  
serverwarp(getservername());

Result: Shield didn't save at all.

As the others pointed out it affects other parts of outfits as well.
__________________
Quote:
Reply With Quote
  #1227  
Old 09-04-2011, 07:14 AM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by ffcmike View Post
Could the playerlist option "play sound when receive PM" use a sound other than chest.wav?
It doesn't seem consistent with receiving a message at all, it's even somewhat annoying with the sound being 2 seconds long.

I already had the item.wav sound played for receiving a PM on Classic, it's not a full second long and is also consistent with a PM bubble.
I still think chest.wav is weird.

I have this light effect part of a gani + gani script which doesn't show at all within the latest client.

PHP Code:
SPRITE   13      light4.png    0    0  128  128 glow

COLOREFFECT 13 1 1 1 0.99
ZOOMEFFECT 13 0.5

SCRIPT
function onPlayerEnters(){
  if(
this.orb != NULL){
    return;
  }
  
this.orb findimg(3);
  
this.rot degtorad(22.5);
  
this.light findimg(13);
  
this.light.alpha 0.99;
  
this.light.zoom 0.5;
  
this.zoomchange = -0.025;
  
this.onTimeout();
}

function 
onTimeout(){
  
this.light.zoom += this.zoomchange;
  
this.light.blue -= this.zoomchange 2;
  
this.light.green -= this.zoomchange 2;
  if(
this.light.zoom in {0.250.5}){
    
this.zoomchange *= -1;
  }
 
  
this.orb.rotation += this.rot;
  
this.setTimer(0.05);
}
SCRIPTEND 
I've toyed with it in different ways such as re-initialising everything onPlayerEnters and not checking to see if the orb object already exists.
The use of both EFFECTMODE and scripted variables was necessary for it to work right within V5 but for the sake of debugging removing either of these also didn't fix the problem.
Does anyone have any idea as to why it's not visible?

Or is it no longer possible to refer to gani sprites via findimg(); and edit these variables?

Last edited by ffcmike; 09-04-2011 at 08:47 AM..
Reply With Quote
  #1228  
Old 09-04-2011, 10:28 AM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
I've just noticed a pretty big problem with something else that uses COLOREFFECT/ZOOMEFFECT within ganis:



This shadow within a gani is offset a long distance without any rotation, and then once rotation is applied it's acting completely differently. I think I read about rotation working differently a while ago but oddly never noticed it with any previous V6 versions.
For rotation I am setting this.rotation within the NPC script.
Reply With Quote
  #1229  
Old 09-04-2011, 02:48 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
Ok there is a problem with setting shield and sword on client-side. But the other things (body, head, attr[1], colors) are fine?
Reply With Quote
  #1230  
Old 09-04-2011, 02:54 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Stefan View Post
Ok there is a problem with setting shield and sword on client-side. But the other things (body, head, attr[1], colors) are fine?
It's just sword and shield now, but it seems head/body/colours have been fixed in the latest version.
Reply With Quote
  #1231  
Old 09-04-2011, 05:47 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
New version v6.01 released:

- changing player.head, player.sword and player.shield on client-side is now sending it to the server
- if player.z is not zero and the player is rotated or zoomed, then the shadow will be displayed at the original position of the player instead of flying through the screen
Reply With Quote
  #1232  
Old 09-04-2011, 06:05 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Stefan View Post
New version v6.01 released:
- changing player.head, player.sword and player.shield on client-side is now sending it to the server
Fixed at last .

Quote:
Originally Posted by Stefan View Post
- if player.z is not zero and the player is rotated or zoomed, then the shadow will be displayed at the original position of the player instead of flying through the screen
I'm not sure if this is referring to the problem I experienced?
Hard to tell as it sounds similar, but the shadow shown within the video is not a typical index 0 shadow, the rising/falling is done through gani'ing rather than adjustment of Z.
Reply With Quote
  #1233  
Old 09-04-2011, 06:18 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
ok um fixed for nothing then x-x hehe
You should fix your scripts then, eventually use rotationcenter of the object or so.
Reply With Quote
  #1234  
Old 09-04-2011, 06:32 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Quote:
Originally Posted by Stefan View Post
ok um fixed for nothing then x-x hehe
You should fix your scripts then, eventually use rotationcenter of the object or so.
Perhaps showcharacter(); could be made to default the rotation center?

Though I'm not sure if rotationcenter is working properly or if I have it wrong, within the NPC script I have:

PHP Code:
this.useowncenter true;
this.rotationcenter = {1.52}; 
Yet the shadow is still offset into a weird position with zero rotation, as a result of the zoom.
Reply With Quote
  #1235  
Old 09-04-2011, 08:24 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
eventually
Remember Stefan:
eventually != eventuell

Reply With Quote
  #1236  
Old 09-04-2011, 09:19 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
When I'm on my staff account on Zodiac (fowlplay4) and I leave the client idling to the point it should be disconnected for not moving instead of getting disconnected my client just crashes completely.
__________________
Quote:
Reply With Quote
  #1237  
Old 09-05-2011, 09:01 PM
ff7chocoboknight ff7chocoboknight is offline
Skyzer Zolderon
ff7chocoboknight's Avatar
Join Date: Dec 2006
Location: New Hampshire, United States
Posts: 725
ff7chocoboknight is a name known to allff7chocoboknight is a name known to allff7chocoboknight is a name known to allff7chocoboknight is a name known to all
Send a message via AIM to ff7chocoboknight Send a message via MSN to ff7chocoboknight
So much crap I don't like! Aah!

FIRST~!
The playerlist is dumb, and it's broken, and it's dumb.

It says "Community:" which I assume is community name , however; it doesn't show the community name it shows the account. (Graal673489 and w/e) This is dumb.
OK! It doesn't update the level a player is in. This is broken.
NYEH! It doesn't dock to the side of the screen and push everything else next to it like it did in v5. This is dumb.

SECOND~!
The scripted RC is dumb, and it's broken, and and it's DUMB.

GAH! Apostrophes show up as DOUBLE apostrophes (not quotes) in RC chat. This is dumb (maybe even broken).
>:| Where it says "Line: #" in the script window doesn't stay where it's supposed to be when the window is maximized. It stays where it was before it was maximized. This is broken.
FFFFUUUUUU-! It's an external window and opens a bunch of other external windows! This is DUMB!

THIRD~!
DUMB BLUE THING OF UGLY IS DUMB AND UGLY

You know the one. It's the blue gradient image that shows up when you log in or get disconnected. MY GOD IS IT UGLY! It... it's just so bad! The blue GUI was GREAT for these moments because it was familiar, and it wasn't dumb and ugly.

FOURTH~!
TEXT SIZE

Why does size 16 font look size 20-ish? I don't like looking at text, so I make it REALLY small so it doesn't cover the whole damn screen. I don't see why text has to render larger than it used to.
__________________

Last edited by ff7chocoboknight; 09-05-2011 at 09:12 PM..
Reply With Quote
  #1238  
Old 09-06-2011, 04:28 AM
jkldogg jkldogg is offline
J.Rollin (killaz)
jkldogg's Avatar
Join Date: Feb 2010
Location: USA
Posts: 675
jkldogg can only hope to improve
Send a message via AIM to jkldogg Send a message via MSN to jkldogg
Sorry if this has already been posted (obviously not reading 83 pages), but i've recently been getting a movement bug. It's been happening to me on Era. What happens is your character will be standing still or moving, and then it will be randomly move in a certain direction or directions for a certain amount of time. For example, i would randomly start moving down, up, left or right. The only way to stop my character from moving is to press TAB to bring up the chat bar. It also works in multiple directions, such as down and to the right. I had at first thought it was a bug on Era, so I told Alfonso (DRAGON551). I'm only reporting it now because someone else had the exact same problem just now on Unholy Nation.
__________________

PSN: jkldogg



The best post ever made on the graal forums.
After playing Graal Online for many years, JKL decides to make a forum account. Isn't life funny?
Reply With Quote
  #1239  
Old 09-06-2011, 10:56 AM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
Quote:
GAH! Apostrophes show up as DOUBLE apostrophes
This is so annoying. You go out of your way to reach over to that apostrophe key, and it doesn't even show up on RC properly. Makes me sad. Also, when will external windows be able to...
NPC Code:
resizeable = false;
canmaximize = false;
canminimize = false;
canclose = false;

__________________
Reply With Quote
  #1240  
Old 09-07-2011, 07:03 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
The latest V6 broke Zodiac's Rendering of Player Heads on the map.

Code:
PHP Code:
//#CLIENTSIDE

function onCreated() {
  
temp.tx = (screenwidth 2);
  
temp.ty = (screenheight 2);
  
with (findimg(201)) {
    
temp.tx;
    
temp.ty;
    
layer 20;
    
image "block.png";
  }
  
temp.obj player;
  
with (findimg(200)) {
    
temp.tx;
    
temp.ty;
    
layer 22;
    
ani "zodiac_mapface";
    
playerlook false;
    
actor.head obj.head;
    
actor.attr[1] = (obj.hat obj.hat obj.attr[1]);
  }

The head appears way off the center in this case.
Attached Thumbnails
Click image for larger version

Name:	v6bug.PNG
Views:	778
Size:	38.1 KB
ID:	53647  
Attached Files
File Type: gani zodiac_mapface.gani (830 Bytes, 699 views)
__________________
Quote:
Reply With Quote
Reply

Tags
graal v6, windows


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 05:15 PM.


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