Graal Forums  

Go Back   Graal Forums > Development Forums > NPC Scripting > New Scripting Engine (GS2)
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #81  
Old 04-08-2009, 05:52 PM
fragman85 fragman85 is offline
Banned
Join Date: Mar 2009
Location: Switzerland
Posts: 261
fragman85 is on a distinguished road
Who cares about Anti-Graal having Back Ups?
I mean what's the use?

Anti-Graal can obviously not to ANYTHING to damage Graal, it's not like they're professional Hackers (otherwise they'd have hacked Graal years ago).
Reply With Quote
  #82  
Old 08-13-2009, 04:31 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 it was fun griefing my client-rc'ers on Zodiac but this should be dealt with.

It needs to filter out HTML tags sent through RC messages.

My current hack fix to prevent the tags from continuing to wreak havoc:

PHP Code:
//#CLIENTSIDE

/*
   Hack fix due to ScriptRCRCchat.onTextChanged not working.
*/

function ScriptedRCWindow.onWake() {
  
onWatchRC();
}

function 
ScriptedRCWindow.onShow() {
  
onWatchRC();
}

function 
onWatchRC() {
  
// Quits looping until onScrolled can takeover completely.
  
if (ScriptedRCScroll.scrollpos[1] > 0) return;
  
checkRC();
  
this.scheduleevent(0.05"WatchRC""");
}

function 
ScriptedRCScroll.onScrolled() {
  
checkRC();
}

/*
   Checks RC for new messages / text.
*/

function checkRC() {

  
// Prevent Scroll Looping
  
if (this.last == ScriptedRCRCchat.text.length()) return;
  
  
// Get Last Line
  
temp.rcchat ScriptedRCRCchat.text;
  for (
temp.temp.rcchat.length(); temp.0temp.i--) {
    
temp.char temp.rcchat.charat(temp.i);
    if (
temp.char == "\\" && temp.lastchar == "n") {
      
temp.lbpos temp.2;
      break;
    }
    
temp.lastchar temp.char;
  }
  
  
// Determine Last Message
  
temp.lastmsg temp.rcchat.substring(temp.lbpos);
  if (
temp.lastmsg.pos("</font>") >= 0) {
    
temp.from    temp.lastmsg.substring(0temp.lastmsg.pos("</font>")+7);
    
temp.textmsg temp.lastmsg.substring(temp.lastmsg.pos("</font>")+7);
    
temp.textmsg temp.from filter(temp.textmsg);
  }
  else 
temp.textmsg temp.lastmsg;
  
  
// Alter Text
  
temp.oldspos = @ScriptedRCScroll.scrollpos;
  
ScriptedRCRCchat.text ScriptedRCRCchat.text.substring(0temp.lbpos) @ temp.textmsg;
  if (
temp.oldspos != (@ScriptedRCScroll.scrollpos)) {
    
ScriptedRCScroll.scrolltobottom();
  }
  
  
// Record Length
  
this.last ScriptedRCRCchat.text.length();
}

// Filter's <font> tags.

function filter(msg) {
  
temp.mpos msg.pos("<font");
  if (
temp.mpos == -1) return msg;
  
temp.cpos msg.substring(temp.mpos).pos(">");
  while (
temp.mpos >= && temp.cpos >= 0) {
    
msg msg.substring(0temp.mpos) @ msg.substring(temp.mpos+temp.cpos+1);
    
temp.mpos msg.pos("<font");
    
temp.cpos msg.substring(temp.mpos).pos(">");
  }
  return 
" " msg.trim();

Attached Thumbnails
Click image for larger version

Name:	clientrc_exploit.png
Views:	1260
Size:	327.3 KB
ID:	49182  
__________________
Quote:

Last edited by fowlplay4; 08-13-2009 at 07:28 PM..
Reply With Quote
  #83  
Old 02-20-2010, 05:06 AM
adam adam is offline
http://wiki.graal.us/
adam's Avatar
Join Date: Nov 2001
Posts: 2,247
adam has a spectacular aura aboutadam has a spectacular aura about
Send a message via AIM to adam
I can't find the scripted RC graphics. sad.
__________________
Rogue Shadow (TCN)(NAT)(Global Development Team)

For development help, contact the patrons of the #graaldt irc channel below, I am usually there.
Click Here to Join IRC Chat Now! -- irc.freenode.net Channel: #graaldt
Quote:
<Dustyshouri> no, RogueShadow is always talking about scripts lol
<Dustyshouri> in fact, he pretty much brought Graal back as a topic single-handedly
Reply With Quote
  #84  
Old 02-20-2010, 05:16 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 fowlplay4 View Post
Well it was fun griefing my client-rc'ers on Zodiac but this should be dealt with.

It needs to filter out HTML tags sent through RC messages.

My current hack fix to prevent the tags from continuing to wreak havoc:
Can you not just replace "<" with "&lt;"? I've done it several times and it works a charm.
__________________
Reply With Quote
  #85  
Old 02-20-2010, 05:52 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
Yeah but then the tags show up.
__________________
Quote:
Reply With Quote
  #86  
Old 02-20-2010, 05:56 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 fowlplay4 View Post
Yeah but then the tags show up.
Isn't that what you want?
__________________
Reply With Quote
  #87  
Old 06-27-2010, 07:00 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
I've picked up work on the Scripted RC again and have made the following improvements:
  • The ban window now works properly. You can ban both accounts and PC IDs now;
  • The ban window also shows now the length of time that a ban takes, and how long there is remaining on a ban;
  • The rights window has been updated and now uses tabs;
  • HTML tags stripped properly from RC chat;
  • RC chat is now automatically focused when you press F6;
  • The script editor now has an adjustable pane so that you can drag the section between the script list and the editor;
  • Removed the playerlist and instead added context menu items to the normal scripted playerlist when you log into Scripted RC (just right-click someone on your F7 list after logging in with F6);
  • Adding drop-down menus for the colours selection in the Attributes window.
Things I plan to fix over the next couple of days:
  • Admin messages not always working properly.
I would really appreciate it if you want to test it. You can do so by loging onto Login 2 and then onto your server and pressing F6. Let me know if there are any bugs or anything that needs improving/fixing.
Attached Thumbnails
Click image for larger version

Name:	Screen shot 2010-06-27 at 18.14.31.png
Views:	1108
Size:	33.4 KB
ID:	51239   Click image for larger version

Name:	Screen shot 2010-06-27 at 18.14.43.png
Views:	1127
Size:	34.0 KB
ID:	51240   Click image for larger version

Name:	Screen shot 2010-06-27 at 18.14.58.png
Views:	1112
Size:	55.3 KB
ID:	51241   Click image for larger version

Name:	Screen shot 2010-06-27 at 18.15.10.png
Views:	1091
Size:	45.5 KB
ID:	51242   Click image for larger version

Name:	Screen shot 2010-06-27 at 19.55.43.png
Views:	1127
Size:	35.9 KB
ID:	51244  

__________________
Skyld

Last edited by Skyld; 06-28-2010 at 03:00 AM..
Reply With Quote
  #88  
Old 06-27-2010, 09:20 PM
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
The scripted rc still needs the ability to search the script list and file browser.

When you have literally hundreds and hundreds of weapons, classes, etc, it would be nice to search for a specific item.
Like the external rc does now...you begin typing, and it finds the first instance that begins with what you typed.

Other than that...i'm glad this is finally being worked on again.

Edit: Also, another thing. Is there any way to check if a player is on clientrc?
The only way I found to do this was to check:
PHP Code:
(@ "-ScriptedRC").this.sessionOpen 
Which of course only works clientside. There should be some flag set to the player if they are on clientrc.
Reply With Quote
  #89  
Old 06-27-2010, 10:09 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
Tig has implemented the type-to-find, albeit in an obstructive way, with the playerlist on Login 2. That should be easy enough to copy and fix up.
__________________
Reply With Quote
  #90  
Old 06-27-2010, 10:19 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by oo_jazz_oo View Post
The scripted rc still needs the ability to search the script list and file browser.
Definitely can do this in the filebrowser, but the script editor might be a bit more complicated since scripts are being opened when they are being selected at the left. That might make it hard since if you click the left so that you can start typing, you might open a script, and also when a script is selected, it might be opened by the client (since it probably simulates a select event).
Quote:
Originally Posted by oo_jazz_oo
Edit: Also, another thing. Is there any way to check if a player is on clientrc?
The clientside check is the only reliable one, not sure if it's a good idea to add client flags or such.
__________________
Skyld
Reply With Quote
  #91  
Old 06-27-2010, 10:25 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 Skyld View Post
The clientside check is the only reliable one, not sure if it's a good idea to add client flags or such.
Use a player. variable clientside.
__________________
Reply With Quote
  #92  
Old 06-27-2010, 11:00 PM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
ohman, i really dislike using the playerlist with clientrc features, perhaps making a sub-menu (if such thing is possible with guis, i dont know.) in playerlist for clientrc?

i dislike the idea because i use the playerlist of "staff functions" such as "warpto"(yes i know that feature have been added to login2 version, but i dont log into that too often.) or opening a Gui with a bunch of stuffs you can do to a player as a staff (summon them, kick them from events, ect)

but hey, nice work!

Edit:
the "submenu" idea is having one menu, then an arrow to the side, like the Start button in windows have.
|------------|-----|-------------|
| Graal -> |-----| Graal.exe |
| Other -> | | Rc.exe |
|------------| |--------------|

sorta.
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you

Last edited by Deas_Voice; 06-27-2010 at 11:01 PM.. Reason: o.o
Reply With Quote
  #93  
Old 06-27-2010, 11:05 PM
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
Quote:
Originally Posted by Skyld View Post
Definitely can do this in the filebrowser, but the script editor might be a bit more complicated since scripts are being opened when they are being selected at the left. That might make it hard since if you click the left so that you can start typing, you might open a script, and also when a script is selected, it might be opened by the client (since it probably simulates a select event).
You could add a search box to the bottom of the list of weapons.

Just a single input box would do, and it would be helpful.
Reply With Quote
  #94  
Old 06-28-2010, 12:57 AM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
hmmm
Attached Thumbnails
Click image for larger version

Name:	bug.png
Views:	1177
Size:	419.4 KB
ID:	51250  
__________________
Reply With Quote
  #95  
Old 06-28-2010, 01:35 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by xAndrewx View Post
hmmm
Hmm there is a problem with the menu display sometimes, I guess it is a problem with the profiles. Go via Login 2 and see if it still happens with the new Scripted RC (that is the old one you are using there).
__________________
Skyld
Reply With Quote
  #96  
Old 06-28-2010, 01:53 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
Would be great if you made a non-graphical client-RC (modeled after the non-graphical RC, of course).
__________________
Reply With Quote
  #97  
Old 06-28-2010, 02:40 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Fixed a couple of bugs and also have eliminated that horrible Script Menu, replacing it with the ability to add new classes, weapons and NPCs from directly inside the script editor. When you add a new script, the tree at the left refreshes and the script is automatically opened in a new tab.
Attached Thumbnails
Click image for larger version

Name:	Screen shot 2010-06-28 at 01.40.52.png
Views:	1068
Size:	49.2 KB
ID:	51252  
__________________
Skyld
Reply With Quote
  #98  
Old 06-28-2010, 02:59 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
Would be great if the tabbed script window was removed and replaced with a replica of RC now. I find the tabs very inconvenient since often I'm referencing another script.
__________________
Reply With Quote
  #99  
Old 06-28-2010, 03:01 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by cbk1994 View Post
Would be great if the tabbed script window was removed and replaced with a replica of RC now. I find the tabs very inconvenient since often I'm referencing another script.
I was thinking of making it optional; keeping the script list but making it possible to size it down and open scripts in external windows instead. Shouldn't be too difficult but there are more important fixes to make first.
__________________
Skyld
Reply With Quote
  #100  
Old 06-28-2010, 07:16 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
Nice work, SKyld.
__________________
Need Playerworld or Account support?
GraalOnline/Toonslab Support Center
Reply With Quote
  #101  
Old 06-28-2010, 08:41 AM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
oh wow- thats alot better. thanks
__________________
Reply With Quote
  #102  
Old 06-28-2010, 07:07 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Okay made the following updates.
  • The file browser is improved:
    • Search has been added, click on the file list and just start typing;
    • Column sorting has been added, just click the column title to sort;
    • The Modified time is now an actual timestamp rather than just a big long horrible number;
    • The folder tree and the file list can now be resized.
  • The script menu has been removed, allowing scripts to be added to NC in the Script Editor instead;
  • HTML tags are now properly stripped.
It's now on Login 1 too, so all Mac/Linux and v6 users should have it right now.
__________________
Skyld
Reply With Quote
  #103  
Old 06-29-2010, 03: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
Quote:
Originally Posted by Skyld View Post
Okay made the following updates.
  • The script menu has been removed, allowing scripts to be added to NC in
Just curious, did you add a log out of rc button?

Because I believe the option was under the list you removed...so, there is no way to log out of client rc now?
Reply With Quote
  #104  
Old 06-29-2010, 08:28 AM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Quote:
Originally Posted by oo_jazz_oo View Post
Just curious, did you add a log out of rc button?

Because I believe the option was under the list you removed...so, there is no way to log out of client rc now?
press f6... it's a toggle!!
__________________
Reply With Quote
  #105  
Old 06-29-2010, 09:25 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
I always thought pressing f6 just hid the window. ^_^;;

I always used the logout button. lol
Reply With Quote
  #106  
Old 06-29-2010, 09:33 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 oo_jazz_oo View Post
I always thought pressing f6 just hid the window. ^_^;;
It does, but there's no reason to log out.
__________________
Reply With Quote
  #107  
Old 06-29-2010, 05:08 PM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
just reconnect if u dont want to be on clientrc :o
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #108  
Old 06-30-2010, 12:24 AM
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
Bug: Filebrowser doesn't output any log information in the bottom panel.
__________________
"We are all in the gutter, but some of us are looking at the stars."
— Oscar Wilde, Lady Windermere's Fan
Reply With Quote
  #109  
Old 07-01-2010, 08:25 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
The following updates have been made today:
  • The ban window now supports global bans, is resizable and the drop down boxes are fixed.
  • The attributes window is resizable and the drop down boxes are fixed.
  • There is a new button (replacing toalls) which opens the global chat.
  • Toggling the Scripted RC open and closed should be more reliable now, as should toggling the Scripted Playerlist.
  • Admin messages have been added into the playerlist context menus.
  • The options window is now working better and is saving the options in a different location so that they take effect on all servers that you have RC on.
  • It's now possible to change the RC chat and script editor font sizes in the Scripted RC options window.
  • The show account window is now showing a timestamp or (none) instead of a scary long number (in v6).
  • In the file browser, sorting by size and modified defaults to descending rather than ascending. Click it again to reverse the sorting.
  • The syntax highlighting has been changed in the script editor to more closely resemble the normal RC (although fully isn't possible yet).
Later on I will update the Scripted RC again to use a new monospaced font in the script editor which should be much easier to read. I'll also be checking the output in the file browser to check that it's showing information properly there, and also make it resizable.

I also tweaked the Scripted Playerlist for v6 users, it should open and close properly now but let me know if there are still problems.
__________________
Skyld
Reply With Quote
  #110  
Old 07-01-2010, 08:34 PM
Fulg0reSama Fulg0reSama is offline
Extrinsical Anomaly
Fulg0reSama's Avatar
Join Date: Sep 2009
Location: Ohio
Posts: 3,049
Fulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant future
Skyld, You must be bored as **** to be doing this all of a sudden :P
__________________

Careful, thoughts and opinions here scare people.
Reply With Quote
  #111  
Old 07-01-2010, 08:37 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Fulg0reSama View Post
Skyld, You must be bored as **** to be doing this all of a sudden :P
Well it's needed finishing off for the last three years or so
__________________
Skyld
Reply With Quote
  #112  
Old 07-01-2010, 11:43 PM
adam adam is offline
http://wiki.graal.us/
adam's Avatar
Join Date: Nov 2001
Posts: 2,247
adam has a spectacular aura aboutadam has a spectacular aura about
Send a message via AIM to adam
Idea: Favorite Scripts

Possible Implementation:
Right Click menu for scripts to select it as a favorite.
Checkbox in the scripts window to toggle "Only Show Favorites"


Possible: Use the same idea with levels or other files you are responsible for, possibly a separate window or tab that shows your favorite files in one place, greatly speeding up workflow.
__________________
Rogue Shadow (TCN)(NAT)(Global Development Team)

For development help, contact the patrons of the #graaldt irc channel below, I am usually there.
Click Here to Join IRC Chat Now! -- irc.freenode.net Channel: #graaldt
Quote:
<Dustyshouri> no, RogueShadow is always talking about scripts lol
<Dustyshouri> in fact, he pretty much brought Graal back as a topic single-handedly
Reply With Quote
  #113  
Old 07-02-2010, 12: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
Personally I've always wanted to categorize scripts, and have collapsing lists. So on Zodiac I don't have to scroll through the 200 or so weapon scripts for skills and spells to get to the systems.
__________________
Quote:
Reply With Quote
  #114  
Old 07-02-2010, 12:27 AM
born2kill born2kill is offline
Mainly GS2+Java Scripter
Join Date: Nov 2006
Posts: 17
born2kill will become famous soon enough
Skyld first of all - nice updates - great work

Secondly - the saveings of weapons / npcs is bugged - if you save a npc the code is replaced with a "0"

Also a warning for all the others - firstly check out if the bug has been already fixed and make a new weapon before you start to edit your old one or you could delete your code with it

Last edited by born2kill; 07-02-2010 at 12:50 AM..
Reply With Quote
  #115  
Old 07-02-2010, 01:26 AM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by born2kill View Post
Skyld first of all - nice updates - great work

Secondly - the saveings of weapons / npcs is bugged - if you save a npc the code is replaced with a "0"

Also a warning for all the others - firstly check out if the bug has been already fixed and make a new weapon before you start to edit your old one or you could delete your code with it
I tested this a bit more and there seemed a bit of a rare problem, fixed it though.
__________________
Skyld
Reply With Quote
  #116  
Old 07-02-2010, 02:05 AM
Deas_Voice Deas_Voice is offline
Deas
Deas_Voice's Avatar
Join Date: Jun 2007
Location: Sweden
Posts: 2,264
Deas_Voice is a jewel in the roughDeas_Voice is a jewel in the rough
Send a message via AIM to Deas_Voice Send a message via MSN to Deas_Voice Send a message via Yahoo to Deas_Voice
keep up the good work, skyld!

oh and, i found a "bug", the "add Weapon/npc/class" isn't at the top if you have a weapon that adds it self at the top, such as "!Weapon".
Perhaps make the "add" to a higher minus count?
__________________
.
WTF is real life, and where do I Download it?
There is no Real Life, just AFK!
since 2003~
I Support~
ღAeonღ | ღTestbedღ | ღDelteriaღ

if you are going to rep me, don't be an idiot, leave your name!
I got nothing but love for you
Reply With Quote
  #117  
Old 07-02-2010, 06:47 AM
TSAdmin TSAdmin is offline
Forum Moderator
TSAdmin's Avatar
Join Date: Aug 2006
Location: Australia
Posts: 1,980
TSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud of
This seems a bit weird:

__________________
TSAdmin (Forum Moderator)
Welcome to the Official GraalOnline Forums! Where sharing an opinion may be seen as a declaration of war!
------------------------
· User Agreement · Code of Conduct · Forum Rules ·
· Graal Support · Administrative Contacts ·
Reply With Quote
  #118  
Old 07-02-2010, 08:29 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 TSAdmin View Post
This seems a bit weird:

Pull out your glasses.
__________________
Reply With Quote
  #119  
Old 07-02-2010, 03:16 PM
Fulg0reSama Fulg0reSama is offline
Extrinsical Anomaly
Fulg0reSama's Avatar
Join Date: Sep 2009
Location: Ohio
Posts: 3,049
Fulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant futureFulg0reSama has a brilliant future
Quote:
Originally Posted by TSAdmin View Post
This seems a bit weird:

Did you change the font by chance? Because from playing with HTML if you change the font without modifying size say for..

Comic Sans MS but you didn't change the font size it can end up being very very much smaller unlike the other because it seems like different fonts have different sizes (weird to me) but if it isn't this problem then I got nothing.
__________________

Careful, thoughts and opinions here scare people.
Reply With Quote
  #120  
Old 07-02-2010, 03:20 PM
TSAdmin TSAdmin is offline
Forum Moderator
TSAdmin's Avatar
Join Date: Aug 2006
Location: Australia
Posts: 1,980
TSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud ofTSAdmin has much to be proud of
Quote:
Originally Posted by Fulg0reSama View Post
Did you change the font by chance? Because from playing with HTML if you change the font without modifying size say for..

Comic Sans MS but you didn't change the font size it can end up being very very much smaller unlike the other because it seems like different fonts have different sizes (weird to me) but if it isn't this problem then I got nothing.
Sadly, no such change was made by my input.
__________________
TSAdmin (Forum Moderator)
Welcome to the Official GraalOnline Forums! Where sharing an opinion may be seen as a declaration of war!
------------------------
· User Agreement · Code of Conduct · Forum Rules ·
· Graal Support · Administrative Contacts ·
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 06:59 PM.


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