Here's also a nice function for a class.
contains Formal name, core name, HEX, RGB, HSL, HSV. Here's an example of it withe the old palette. Attached has all body colors
Would it be possible to use RGB? These colors kinda suck. I like the improvement and the fact that it was released before v6 was complete but RGB would open up so many more unique body combinations and I'm sure the 10000000 people soon to be playing on facebook would appreciate it.
Quote:
Originally Posted by fowlplay4
Hmm, while the extra colors are nice, our need for more would be completely satisfied by being able to specify hex (#abcdef) colors.
Quote:
Originally Posted by DustyPorViva
Since you have these in already, I imagine you're already parsing a predefined list of RGB/HEX codes, so couldn't you allow us to use raw hex instead?
Either way, the fact that we got new colors = yay! (I did find a shade of orange!)
Can we get this before v6 is released?
__________________
Quote:
Originally Posted by Loriel
Seriously, you have ****-all for content and you're not exactly pulling in new developer talent, angling for prestigious titles should be your last concern.
as well as triggeraction(x,y,w,h,persistent,action,params);
Where persistent is a boolean for whether it keeps going after it hits an NPC(since an NPC on top can "steal" a triggeraction).
Currently on the latest beta, if I'm logged on to a player-world (happens on both Zodiac and Era) and click close on the Window in the top-right Graal quits responding and I have to force close it through Task Manager or by repeatedly clicking close until the Windows 'Program has stopped responding' window shows up.
PHP Code:
Problem signature:
Problem Event Name: AppHangB1
Application Name: Graal.exe
Application Version: 5.3.2.4
Application Timestamp: 4d9a0bdc
Hang Signature: d431
Hang Type: 0
OS Version: 6.1.7600.2.0.0.256.1 (Windows 7 64-bit Ultimate)
Locale ID: 1033
Additional Hang Signature 1: d431f4d14d7a1087199613e422516523
Additional Hang Signature 2: dc32
Additional Hang Signature 3: dc323a9c24410c45175eff1f4811623e
Additional Hang Signature 4: d431
Additional Hang Signature 5: d431f4d14d7a1087199613e422516523
Additional Hang Signature 6: dc32
Additional Hang Signature 7: dc323a9c24410c45175eff1f4811623e
Currently on the latest beta, if I'm logged on to a player-world (happens on both Zodiac and Era) and click close on the Window in the top-right Graal quits responding and I have to force close it through Task Manager or by repeatedly clicking close until the Windows 'Program has stopped responding' window shows up.
PHP Code:
Problem signature: Problem Event Name: AppHangB1 Application Name: Graal.exe Application Version: 5.3.2.4 Application Timestamp: 4d9a0bdc Hang Signature: d431 Hang Type: 0 OS Version: 6.1.7600.2.0.0.256.1 (Windows 7 64-bit Ultimate) Locale ID: 1033 Additional Hang Signature 1: d431f4d14d7a1087199613e422516523 Additional Hang Signature 2: dc32 Additional Hang Signature 3: dc323a9c24410c45175eff1f4811623e Additional Hang Signature 4: d431 Additional Hang Signature 5: d431f4d14d7a1087199613e422516523 Additional Hang Signature 6: dc32 Additional Hang Signature 7: dc323a9c24410c45175eff1f4811623e
ok so today my outdated v6 didn't start (nothing happens when I try to open graal, it worked fine yesterday) can I get a link to the updated version?
edit: n/m I just downloaded the normal version
Currently on the latest beta, if I'm logged on to a player-world (happens on both Zodiac and Era) and click close on the Window in the top-right Graal quits responding and I have to force close it through Task Manager or by repeatedly clicking close until the Windows 'Program has stopped responding' window shows up.
I've narrowed down what was causing my problem to this:
How to reproduce:
1. Add script as a weapon
2. Click Freeze Graal
3. Graal proceeds to freeze.
Alternate way:
1. Apply the script twice while logged in.
Graal will then refuse to close properly.
PHP Code:
//#CLIENTSIDE
function onCreated() {
new GuiWindowCtrl("Shell") {
x = y = 0;
width = 100; height = 100;
canresize = canmaximize = canminize = false;
profile = GuiBlueWindowProfile;
new GuiButtonCtrl("ShellFreezeButton") {
x = 10;
y = 24;
width = 80;
height = 70;
text = "Freeze Graal";
profile = GuiBlueButtonProfile;
}
}
playlooped("http://zodiacgraal.serverroom.us:7926");
}
function ShellFreezeButton.onAction() {
stopmidi();
}