API Info: Difference between revisions

From Amaretto Breedables Ponie Pals Manual
Jump to navigation Jump to search
Created page with "'''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 (N..."
 
No edit summary
Line 1: Line 1:
'''FIRST AND FOREMOST this API is READ ONLY'''
'''FIRST AND FOREMOST this API is READ ONLY'''


--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:
Line 18: Line 18:
Edition//RAB Release Alpha Beta
Edition//RAB Release Alpha Beta


--Basket--
Basket
P000000000000-0000-0000-000000000000:SUCESSFULL_BASKET:0.11:A:1
P000000000000-0000-0000-000000000000:SUCESSFULL_BASKET:0.11:A:1
ID:
ID:
Line 44: Line 44:
1024 particles off
1024 particles off


--Example bitfeild Decoder for scripts(NOTE the High to Low decoding nature)--
Example bitfeild Decoder for scripts(NOTE the High to Low decoding nature)
if(Bitfeild & 1024)
if(Bitfeild & 1024)
     llSay(0,"Particles off");
     llSay(0,"Particles off");

Revision as of 23:09, 19 July 2017

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: Bitfeild 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 bitfeild Decoder for scripts(NOTE the High to Low decoding nature) if(Bitfeild & 1024)

   llSay(0,"Particles off");

if(Bitfeild & 512)

   llSay(0,"Particles on");

if(Bitfeild & 256)

   llSay(0,"move off");

if(Bitfeild & 128)

   llSay(0,"move phantom");

if(Bitfeild & 64)

   llSay(0,"move physical");

if(Bitfeild & 32)

   llSay(0,"sound off");

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");