[acc-1311] escape characters

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: [acc-1311] escape characters

Re: [acc-1311] escape characters

by randi » Mon Dec 15, 2008 10:17 pm

Fixed.

[acc-1311] escape characters

by Isle » Sun Dec 14, 2008 10:52 pm

when ACC sees an "\" in a string, it escapes all characters untill it hits another "\".
IE

Code: Select all

print(s:"\cchello");
delay(35*5);
print(s:"\cchow are you");
prints

Code: Select all

hello");delay(35*5);print(s:"how are you

Top