Difference between revisions of "In muscle sign"

From Kolmafia
Jump to navigation Jump to search
imported>Efilnikufecin
imported>ZammyWarrior
Line 4: Line 4:
 
[[Category:Ash Functions |In muscle sign()]]
 
[[Category:Ash Functions |In muscle sign()]]
 
[[Category:Needs Code Samples | In muscle sign()]]
 
[[Category:Needs Code Samples | In muscle sign()]]
 +
 +
<pre>#script checks to see if you are in a muscle sign. If true, it will import a script designed to plant mushrooms.
 +
#If false, it does nothing.
 +
if(in_muscle_sign()){
 +
import <Mushroom Script.ash>;
 +
}</pre>

Revision as of 03:28, 31 August 2007

boolean in_muscle_sign()
Returns true if your ascension sign is a muscle sign otherwise false.

#script checks to see if you are in a muscle sign. If true, it will import a script designed to plant mushrooms. 
#If false, it does nothing.
if(in_muscle_sign()){
import <Mushroom Script.ash>;
}