User:Allen Kerensky/Myriad Lite Preview 5/Flaws Client
From OpenSimulator
< User:Allen Kerensky | Myriad Lite Preview 5
Revision as of 14:57, 6 February 2012 by Allen Kerensky (Talk | contribs)
Myriad Lite Flaws Client
Myriad_Lite_Flaws_Client-v0.0.0-20111006.lsl
// Myriad_Lite_Flaw_Client-v0.0.0-20111006.lsl // The Myriad RPG System was designed, written, and illustrated by Ashok Desai // Myriad RPG licensed under the Creative Commons Attribution 2.0 UK: England and Wales // http://creativecommons.org/licenses/by/2.0/uk/ // Myriad Lite software Copyright (c) 2011 by Allen Kerensky (OSG/SL) // Myriad Lite licensed under the // Creative Commons Attribution-Share Alike-Non-Commercial 3.0 Unported // http://creativecommons.org/licenses/by-nc-sa/3.0/ integer dynchan; default { state_entry() { llSetText("Client: Flaws",<1,1,1>,1); dynchan = (integer)("0x"+llGetSubString((string)llGetKey(),0,6)); llListen(dynchan,"",NULL_KEY,""); llListen(-999,"",NULL_KEY,""); llRegionSay(-999,"LIST_FLAWS"); } touch_start(integer touched) { touched = 0; // LSLINT llRegionSay(-999,"LIST_FLAWS"); llRegionSay(-999,"GET_FLAW|Enemy"); llRegionSay(-999,"GET_FLAW|Barred"); llRegionSay(-999,"GET_FLAW|Notorious"); llRegionSay(-999,"GET_FLAW|Unlucky"); llRegionSay(-999,"GET_FLAW|Poor"); llRegionSay(-999,"GET_FLAW|Bad Hearing"); llRegionSay(-999,"GET_FLAW|Bad Scent"); llRegionSay(-999,"GET_FLAW|Bad Taste"); llRegionSay(-999,"GET_FLAW|Bad Vision"); llRegionSay(-999,"GET_FLAW|Banned Skill"); llRegionSay(-999,"GET_FLAW|Banned Boon"); llRegionSay(-999,"GET_FLAW|Banned SFX"); llRegionSay(-999,"GET_FLAW|Cold Blooded"); llRegionSay(-999,"GET_FLAW|Deadly Weakness"); llRegionSay(-999,"GET_FLAW|Slow"); llRegionSay(-999,"GET_FLAW|Magic Susceptible"); llRegionSay(-999,"GET_FLAW|Prejudice"); llRegionSay(-999,"GET_FLAW|Xyzzy"); } listen(integer channel,string name,key id,string msg) { name = ""; // LSLINT id = NULL_KEY; // LSLINT if ( llSubStringIndex(msg,"FLAW") >= 0 ) { llSay(PUBLIC_CHANNEL,(string)channel+": "+msg); } } }