Live Help
Membership
You are a guest!

Register Today!

Log In
Reset Password
Game Network
Community Forum

MMO GAME LIST
World of Warcraft
Age of Conan
Anarchy Online
Archlord
Cabal Online
City of Heroes
City of Villains
Dark Age of Camelot
Darkfall Online
Diablo 2
Dungeons and Dragons
Dofus
Eve Online
Everquest 2
Final Fantasy XI
Guild Wars
Hero Online
Knight Online
Lineage 2
Lord of the Rings Online
Maple Story
Ragnarok Online
Runescape 2
Second Life
SilkRoad Online
Star Wars Galaxies
Tibia
Warhammer Online

FPS GAME LIST
Call of Duty
Combat Arms
Counter Strike
Halo

Welcome Guest ( Log In | Register )

> Avatar holgramer maker thingy okey humm.... how about "The thingy maker", Makes you non-physical
post Oct 16 2009, 08:38 PM
Post #1

aliz123



Advanced
Group Icon

Group: Elite Members
Posts: 89
Joined: 20-February 09
Member No.: 843,883






Makes you non-physical so that pushbullets do nothing at all.

Instructions
Make a cube, Name it autoanchor or something
Drop this into it
Rightclick > More... > Attach HUD > (somewhere on your hud)
Code


// Anchor 0.2
// Catherine Omega Heavy Industries

vector gPos;
integer gAnchored = FALSE;

default
{
state_entry()
{
llListen(0,"",llGetOwner(),"");
gPos = llGetPos();
}
attach(key agent)
{
if (agent != NULL_KEY)
{
llRequestPermissions(agent, PERMISSION_TAKE_CONTROLS);
}
else
{
llReleaseControls();
}
}

run_time_permissions(integer perm)
{
if (perm)
{
llTakeControls(CONTROL_DOWN| CONTROL_FWD| CONTROL_UP | CONTROL_LEFT | CONTROL_RIGHT | CONTROL_BACK, TRUE, TRUE);
}
}
control(key id, integer level, integer edge)
{
if (level > 0)
{
llStopMoveToTarget();
}
else
{
gAnchored = TRUE;
gPos = llGetPos();
llSetStatus(STATUS_PHYSICS, TRUE);
llMoveToTarget(gPos,0.1);
}
}
}
Go to the top of the page
 
+Quote Post



Reply to this topicStart new topic

 


> Board Footer
Time is now: 21st March 2010 - 03:23 AM