Skip to content

Commit

Permalink
New scripts ro load
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Beckhusen <[email protected]>
  • Loading branch information
Outworldz committed Dec 18, 2019
1 parent 0f9e894 commit 6fdbbbb
Show file tree
Hide file tree
Showing 18 changed files with 1,022 additions and 0 deletions.
37 changes: 37 additions & 0 deletions FlashLamp/Object/Flash.lsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

integer root = 0 ; // change to the number of a prim that you want to flash
float timeval = 0.1; //the interval between events, smaller = faster
integer counter = 0;

On() {
llSetLinkPrimitiveParamsFast(root,[PRIM_POINT_LIGHT, TRUE, <1,1,1>, 1.0, 10, .1, PRIM_FULLBRIGHT, ALL_SIDES,TRUE, PRIM_GLOW, ALL_SIDES, 1.0]);
}
Off() {
llSetLinkPrimitiveParamsFast(root,[PRIM_POINT_LIGHT, FALSE, <1,1,1>, 1.0, 10, .1, PRIM_FULLBRIGHT, ALL_SIDES,FALSE, PRIM_GLOW, ALL_SIDES, 0.0]);
}
default
{
state_entry()
{
Off();
}
touch_start(integer total_number)
{
llSetTimerEvent(timeval); // between events
}
timer()
{
if (counter == 0)
On();
else if (counter == 1)
Off();
else if (counter == 2)
On();
else if (counter >= 3) {
Off();
counter = -1;
llSetTimerEvent(0);
}
counter++;
}
}
1 change: 1 addition & 0 deletions GameOfFireAndIce
Submodule GameOfFireAndIce added at d446b5
3 changes: 3 additions & 0 deletions HG Teleporter/HG Teleporter.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Solution name="HG Teleporter">
<Project name="HG Teleporter" path="HG Teleporter\HG Teleporter.prj" active="true"/>
</Solution>
8 changes: 8 additions & 0 deletions HG Teleporter/HG Teleporter/HG Teleporter.prj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project name="HG Teleporter" guid="51805803-890c-4338-89ee-33df6ab6756f">
<Object name="Object" guid="93af6471-e139-4d3d-8546-7822d412954f" active="true">
<Notecard name="Destinations" guid="98d91026-d7ee-4380-8381-b09382c404a5">
</Notecard>
<Script name="Script.lsl" guid="3b8f2075-0fb7-4c26-840d-0979021e98c8">
</Script>
</Object>
</Project>
29 changes: 29 additions & 0 deletions HG Teleporter/HG Teleporter/Object/Destinations
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

// Example notecard

// Enter each destination in the form :
// grid | region | x,y (global location) | url | x,y,z (optional landing point)

// The optional landing point is useful in the case of sims that not been designed
// for direct teleport, when your avatar lands underwater or in a closed room.
Raels World|The High castle|2359,1466|||
Raels World|Tomb raider Temple| 2409,1516|||
Raels World|Sleepless City| 2399,1506|||
Raels World|Raels World| 2339,1446 |||
Raels World|Raels habitat| 2349,1456|||
Raels World|Raels Freebee mall|2389,1496|||
Raels World|Raels flight test ground|2379,1486|||
Raels World|Raels club|2419,1526|||
Raels World|Doomed city|2369,1476|||martin


// Example notecard

// Enter each destination in the form :
// grid | region | x,y (global location) | url | x,y,z (optional landing point)

// The optional landing point is useful in the case of sims that not been designed
// for direct teleport, when your avatar lands underwater or in a closed room.


Raels World | The High castle | 2359,1466 || 92.232.227.241|
Loading

0 comments on commit 6fdbbbb

Please sign in to comment.