Graal Forums  

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

 
 
Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 11-22-2005, 07:01 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
Escape Problem

I am having trouble on Rudora regarding escapes.

First, \" does not work properly. It returns scripting errors (like I am about to demostrate). However, I can use \\".

To start, the following script:
PHP Code:
function onCreated()
{
  echo(
"Hello, \"friend\"!");

... is returning the following errors:
HTML Code:
Script compiler output for Test (in level rudora_adminhouse1.nw at pos (30.5, 30)):
error: unexpected token: friend at line 4: friend\""!"");"
error: missing semicolon at line 4: friend\""!"");"
error: unexpected token: \ at line 4: friend\""!"");"
error: unexpected token: ) at line 4: friend\""!"");"
error: unexpected token: " at line 4: friend\""!"");"
The script of npc Test has been updated
What's more, is that when I reopen the script, it all of a sudden has changed (see Database NPC "Test" on Rudora):
PHP Code:
function onCreated()
{
  echo(
"Hello, "
friend\\""!"");"

However, if I use the following instead (escaping the escape):
PHP Code:
function onCreated()
{
  echo(
"Hello, \\"friend\\"!"); 
  
/*
    That has a \\" at the end of "friend" but
    vBulletin is being evil to me
  */

... then it works.

I'm not sure about this myself, but I'd call this a fairly large problem.
__________________
Skyld

Last edited by Skyld; 11-22-2005 at 09:46 PM.. Reason: Better name
Reply With Quote
 


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 04:31 PM.


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