What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

"An error occured when EntityName was interpreted".

Megser

Well-Known Member
Joined
Apr 17, 2010
Messages
1,389
Reaction score
73
Apparently this line gives this error:

PHP:
        <PickUp QuestName="Up, Up & Away!" QuestId="14244" GiverName="Sassy Hardwrench" GiverId="36425" />


Oh, I see what the error is. There's an & in the way. It has to be escaped. I'll just change it to "and".
 
Last edited:
change

PHP:
 & 

to:

 & amp ;

without the spaces

it's just like "shaky" whatever his name is... he is:

PHP:
 & quot ;Shaky& quot ;

without the spaces
 
Back
Top