Problems with quotations

Posted by Edgeofforever on Sat 01 Jan 2005 08:09 PM — 3 posts, 15,197 views.

#0
I'm not positive if this should go here, but I'm going to put it here anyways:

here is my problem: I want a script to be able to store and access the following string, exactly as it is:

Lord Kahl's "ThievesBlade"

Unfortunatly, when I try to access the contents of the variable using

if weapon = "Lord Kahl's "ThievesBlade"" then

there is an obvious problem with the quotations. Is there a way to put a character before the " to indicate its still part of the string?

Thanks
Poland #1
Use: if weapon = "Lord Kahl's ""ThievesBlade""" then
#2
perfect, thanks.