Difference between revisions of "User talk:Perry Mizin"
Jump to navigation
Jump to search
Perry Mizin (talk | contribs) |
Perry Mizin (talk | contribs) |
||
Line 3: | Line 3: | ||
No os riais | No os riais | ||
== Welcome == | == Welcome == | ||
Hello, I am Perry Mizin and this will be my humble try to contribute with the project " | Hello, I am Perry Mizin and this will be my humble try to contribute with the project "[[Universal Translator|Universal Google Translator]]" created by [[User:Hank Ramos|Hank Ramos]]. | ||
The next code was originally created by [[User:Hank Ramos|Hank Ramos]], I will start modifiying some functions on my way... | |||
Don´t laugh | Don´t laugh | ||
---- | ---- | ||
'''txTxtLot() = sendTextBatch()''' | '''txTxtLot() = sendTextBatch()''' |
Revision as of 11:17, 13 December 2009
Bienvenid@
Hola, soy Perry Mizin y este será mi humilde intento de contribucion al proyecto "traductor universal de google" creado por Hank Ramos. No os riais
Welcome
Hello, I am Perry Mizin and this will be my humble try to contribute with the project "Universal Google Translator" created by Hank Ramos.
The next code was originally created by Hank Ramos, I will start modifiying some functions on my way... Don´t laugh
txTxtLot() = sendTextBatch() <lsl> txTxtLot(integer txch, string txtxt) {
txtxt = llXorBase64StringsCorrect(llStringToBase64(txtxt), llStringToBase64(password)); while (llStringLength(txtxt) > 508) //If string is 509 characters or longer { llSay(txch, llGetSubString(txtxt, 0, 507)); //send 508 character chunk txtxt = llGetSubString(txtxt, 508, -1); //delete 508 character chunk } llSay(txch, txtxt); //send out any remainder chunk or original chunk // Perry Mizin doesn´t understand the aim of the following if. if (llStringLength(txtxt) == 508) llSay(txch, (string)(txch*4958654)); llMessageLinked(LINK_ALL_CHILDREN, 6634934, (string)<0.25, 0, 0.25>, "");
} </lsl>
string rxTxtLot() = string receiveTextBatch() <lsl> string rxTxtLot(key rxid, string rxmsg) {
integer rxliPos; string rxtmpStr = ""; while (~llListFindList(sayCache, (list)rxid)) { rxliPos = llListFindList(sayCache, [rxid]); rxtmpStr = (rxtmpStr="") + rxtmpStr + llList2String(sayCache, rxliPos + 1); sayCache = llDeleteSubList(sayCache, rxliPos, rxliPos + 1); } rxmsg = rxtmpStr + rxmsg; rxmsg = llBase64ToString(llXorBase64StringsCorrect(rxmsg, llStringToBase64(password))); return rxmsg;
} </lsl>
string rxTxtLotPrv() = string receiveTextBatchPrivate()
<lsl>
string rxTxtLotPrv(key prxid, string prxmsg)
{
integer prxliPos; string prxtmpStr = ""; while (~llListFindList(sayCachePrivate, (list)prxid)) { prxliPos = llListFindList(sayCachePrivate, [prxid]); prxtmpStr = (prxtmpStr="") + prxtmpStr + llList2String(sayCachePrivate, prxliPos + 1); sayCachePrivate = llDeleteSubList(sayCachePrivate, prxliPos, prxliPos + 1); } prxmsg = prxtmpStr + prxmsg; prxmsg = llBase64ToString(llXorBase64StringsCorrect(prxmsg, llStringToBase64(password))); return prxmsg;
} </lsl>