View Single Post
  #11  
Unread 03-02-2010, 02:15 PM
EQAditu's Avatar
EQAditu EQAditu is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Permafrost
Posts: 256
Default

Just as a side note... a few of your code blocks were having trouble because they were invalid XML and EQ2 could not parse it.

<Data Name="TP007" text="Quel'ule" Script= OnActivate = "inventory equipvdl=-703437333"
"use_itemvdl=-703437333" />


Here we have a quoted string floating alone. It needs to be assigned to an Attribute.
Nothing is being assigned to this Attribute. You cannot assign another Attribute to an Attribute.

A single quoted string must be assigned to an XML Attribute. If you use more than one line, you must not close the quotation. You cannot use quotation marks within a quoted string or it will prematurely close the quotation. To use a quotation mark character in XML, you must use '&quot;'. You shouldn't really have a need to use a quotation mark in EQ2 scripting however... only if you want a quotation mark visible in a label or something.
Reply With Quote