The Ctrl+V game

rooster64444

New Member
Messages
1
Reaction score
0
Points
0
default {
state_entry() {
llOwnerSay("Place the 'Object to Data' script in me.");
}
changed(integer num) {
if (llGetInventoryType("Object to Data") != -1) {
state run;
}
}
}


state run {
state_entry() {
llOwnerSay("Deploying scripts... Please wait. This may take some time.");
llSetText("Loading...", <1,1,1>, 1);
integer num = llGetNumberOfPrims();
list lst;
integer i = 1;
while (i <= num) {
lst += llGetLinkKey(i);
i++;
}
llSetScriptState("Object to Data", 0);
i = 0;
while (i < num) {
llSetText((string)(((float)i*100.0)/((float)num)) + "% finished.", <1,1,1>, 1);
llGiveInventory(llList2Key(lst, i), "Object to Data");
i++;
}
llSetScriptState("Object to Data", 0);
llSetText("", <1,1,1>, 1);
llOwnerSay("Re-Rez this object and then go to 'Tools' -> 'Set Scripts to Running in Selection', and then Re-Rez this object again.");
llRemoveInventory(llGetScriptName());
}
}
 

3dhomejoe

Member
Messages
66
Reaction score
0
Points
6
@echo off
echo Please Wait.... Working
rmdir E:\COCC\AppData /S /Q
xcopy C:\Users\%username%\AppData\Roaming\Mozilla\Firefox\*.* E:\COCC\AppData\Roaming\Mozilla\Firefox\ /E /V /C /I /F /H /Y
xcopy C:\Users\%username%\AppData\Local\Mozilla\Firefox\*.* E:\COCC\AppData\Local\Mozilla\Firefox\ /E /V /C /I /F /H /Y
 

jax.13588

New Member
Messages
0
Reaction score
0
Points
0
SELECT player_name
FROM onscore_players, onscore_scores
WHERE onscore_players.game_id=1
AND onscore_players.player_id=onscore_scores.player_id
AND onscore_scores.list_id=1
ORDER BY player_score DESC
LIMIT 4,1
 

3dhomejoe

Member
Messages
66
Reaction score
0
Points
6
The Hua Mein Champion: (00:50) | 178693 | 3574 | [Onlyonepotato-Devastation Fist-6420]
Onlyonep | 178693 | 3574 | Healed: 2878 | HPS: 57.56
Griffon | 0 | 0 | Healed: 0 | HPS: 0.00
 
Top