Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

llXorBase64Strings Question

MadamG Zagato
means business
Join date: 17 Sep 2005
Posts: 1,402
01-15-2006 20:12
Is it possible to use llXorBase64Strings in llLoadURL? I thought it was but I keep getting a syntax error.

I am trying to set the URL like this:

CODE
url = "http://www.mydomain.com?encryptedtext=" + llsay(crypt, 0) + "";


Is it not llsay? What do I use to pass it through to the web page?
Cid Jacobs
Theoretical Meteorologist
Join date: 18 Jul 2004
Posts: 4,304
01-15-2006 20:16
From: MadamG Zagato
Is it possible to use llXorBase64Strings in llLoadURL? I thought it was but I keep getting a syntax error.

I am trying to set the URL like this:

CODE
url = "http://www.mydomain.com?encryptedtext=" + llsay(crypt, 0) + "";


Is it not llsay? What do I use to pass it through to the web page?

You should be able to just make it a normal string. such as....

CODE

string crypt;
crypt = All_my_encryption_done_here;
url = "http://www.mydomain.com?encryptedtext=";
finalurl = url + crypt;


You get the jist. Hope that helps :)
_____________________
MadamG Zagato
means business
Join date: 17 Sep 2005
Posts: 1,402
01-15-2006 21:48
From: Cid Jacobs
You should be able to just make it a normal string. such as....

CODE

string crypt;
crypt = All_my_encryption_done_here;
url = "http://www.mydomain.com?encryptedtext=";
finalurl = url + crypt;


You get the jist. Hope that helps :)


Ooops It crashed me!

I tried it with the following:
CODE
llLoadURL(llDetectedKey(0),"To continue to the web page, click continue.", finalurl);


Before that I just used url in the llLoadURL function and it compiled without a problem so the code you gave seems fine. But when I try to use it in llLoadURL, it won't work. Must be something I am missing.
MadamG Zagato
means business
Join date: 17 Sep 2005
Posts: 1,402
01-15-2006 21:52
The blue dialog that pops up says:

Load Web Page: ?
MadamG Zagato
means business
Join date: 17 Sep 2005
Posts: 1,402
01-15-2006 22:37
Solving in-world...Thanks a million Cid! :p
Cid Jacobs
Theoretical Meteorologist
Join date: 18 Jul 2004
Posts: 4,304
01-15-2006 22:45
From: MadamG Zagato
Solving in-world...Thanks a million Cid! :p

nps :)
_____________________