Virtual Tracking Guide

From CRIPTWiki
Revision as of 02:59, 7 June 2009 by Admin (Talk | contribs) (Created page with 'realXtend can run LSL scrpit no problem. Hence, we will be able to use exist LSL command embedding in python to run the command. The key command that is used: Ask for permissi...')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

realXtend can run LSL scrpit no problem.

Hence, we will be able to use exist LSL command embedding in python to run the command.

The key command that is used:

Ask for permission from user to track them.

integer perm = llGetPermissions();
if (perm & PERMISSION_DEBIT) // using & is important! perm is a bitmask!
{
    // debit code goes here
}

Source: http://lslwiki.net/lslwiki/wakka.php?wakka=ScriptPermissions