API Info: Difference between revisions

From Amaretto Breedables Ponie Pals Manual
Jump to navigation Jump to search
No edit summary
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
Ponie
Ponie
P000000000000-0000-0000-000000000000:2:O:0:N:94:1:0:100:10:5:169:0.05:A
P000000000000-0000-0000-000000000000:2:O:0:N:94:1:0:100:10:5:169:0.05:A
ID:
ID:
Gender:
Gender:
BreedMode:
BreedMode:
Age:
Age:
Condition://NSRPZ (Normal Sick Recovery Pet Sleep)  
Condition://NSRPZ (Normal Sick Recovery Pet Sleep)  
Zing:
Zing:
Grub:
Grub:
Moxie:
Moxie:
bliss:
bliss:
Cycles:
Cycles:
Range:
Range:
Bitfeild of settings:**1
Bitfeild of settings:**1
Version:
Version:
Edition//RAB Release Alpha Beta
Edition//RAB Release Alpha Beta


Line 27: Line 41:




Note 1: Bitfeild adds low to high so you must test high to low
Note 1: Bitfield adds low to high so you must test high to low
1 anim on
1 anim on
2 anim off
2 anim off
Line 44: Line 58:
1024 particles off
1024 particles off


Example bitfeild Decoder for scripts(NOTE the High to Low decoding nature)
Example Bitfield Decoder for scripts(NOTE the High to Low decoding nature)
if(Bitfeild & 1024)
<syntaxhighlight lang="lsl">
 
if(Bitfield & 1024)
llSay(0,"Particles off");
    llSay(0,"Particles off");
 
if(Bitfield & 512)
if(Bitfeild & 512)
    llSay(0,"Particles on");
 
if(Bitfield & 256)
llSay(0,"Particles on");
    llSay(0,"move off");
 
if(Bitfield & 128)
if(Bitfeild & 256)
    llSay(0,"move phantom");
 
if(Bitfield & 64)
llSay(0,"move off");
    llSay(0,"move physical");
 
if(Bitfield & 32)
if(Bitfeild & 128)
    llSay(0,"sound off");
 
if(Bitfield & 16)
llSay(0,"move phantom");
    llSay(0,"sound on");
 
if(Bitfield & 8)
if(Bitfeild & 64)
    llSay(0,"text off");
 
if(Bitfield & 4)
llSay(0,"move physical");
    llSay(0,"text on");
 
if(Bitfield & 2)
if(Bitfeild & 32)
    llSay(0,"Anim off");
 
if(Bitfield & 1)
llSay(0,"sound off");
    llSay(0,"Anim on");
 
</syntaxhighlight>
if(Bitfeild & 16)
 
llSay(0,"sound on");
 
if(Bitfeild & 8)
 
llSay(0,"text off");
 
if(Bitfeild & 4)
 
llSay(0,"text on");
 
if(Bitfeild & 2)
 
llSay(0,"Anim off");
 
if(Bitfeild & 1)
 
llSay(0,"Anim on");

Latest revision as of 16:59, 24 October 2023

FIRST AND FOREMOST this API is READ ONLY

Ponie P000000000000-0000-0000-000000000000:2:O:0:N:94:1:0:100:10:5:169:0.05:A

ID:

Gender:

BreedMode:

Age:

Condition://NSRPZ (Normal Sick Recovery Pet Sleep)

Zing:

Grub:

Moxie:

bliss:

Cycles:

Range:

Bitfeild of settings:**1

Version:

Edition//RAB Release Alpha Beta

Basket P000000000000-0000-0000-000000000000:SUCESSFULL_BASKET:0.11:A:1 ID: Status://Code for use like SUCESSFUL_BASKET Version: Edition://RAB Release Alpha Beta Basket Update Version//Future Use


Note 1: Bitfield adds low to high so you must test high to low 1 anim on 2 anim off

4 text on 8 text off

16 sound on 32 sound off

64 move phys 128 move phantom 256 move off

512 particles on 1024 particles off

Example Bitfield Decoder for scripts(NOTE the High to Low decoding nature)

if(Bitfield & 1024)
    llSay(0,"Particles off");
if(Bitfield & 512)
    llSay(0,"Particles on");
if(Bitfield & 256)
    llSay(0,"move off");
if(Bitfield & 128)
    llSay(0,"move phantom");
if(Bitfield & 64)
    llSay(0,"move physical");
if(Bitfield & 32)
    llSay(0,"sound off");
if(Bitfield & 16)
    llSay(0,"sound on");
if(Bitfield & 8)
    llSay(0,"text off");
if(Bitfield & 4)
    llSay(0,"text on");
if(Bitfield & 2)
    llSay(0,"Anim off");
if(Bitfield & 1)
    llSay(0,"Anim on");