My primestat: Difference between revisions
Jump to navigation
Jump to search
ZammyWarrior (talk | contribs) No edit summary |
ZammyWarrior (talk | contribs) No edit summary |
||
| Line 6: | Line 6: | ||
<pre>#If primestat returns mysticality, script will retrieve X amount of delectable catalyst | <pre>#If primestat returns mysticality, script will retrieve X amount of delectable catalyst | ||
#(X = amount of scrumptious reagents in inventory). Then it will use all of the delectable catalyst in your inventory. | #(X = amount of scrumptious reagents in inventory). Then it will use all of the delectable catalyst in your inventory. | ||
#Designed to create | #Designed to create scrumpdiddlyumptious solutions equal to the amount of scrumptious reagents in your inventory. | ||
if(my_primestat() == $stat[mysticality]){ | if(my_primestat() == $stat[mysticality]){ | ||
retrieve_item(item_amount($item[scrumptious reagent]), $item[delectable catalyst]); | retrieve_item(item_amount($item[scrumptious reagent]), $item[delectable catalyst]); | ||
Revision as of 03:44, 31 August 2007
stat my_primestat()
Returns the stat associated with your class.
#If primestat returns mysticality, script will retrieve X amount of delectable catalyst
#(X = amount of scrumptious reagents in inventory). Then it will use all of the delectable catalyst in your inventory.
#Designed to create scrumpdiddlyumptious solutions equal to the amount of scrumptious reagents in your inventory.
if(my_primestat() == $stat[mysticality]){
retrieve_item(item_amount($item[scrumptious reagent]), $item[delectable catalyst]);
use(item_amount($item[delectable catalyst]), $item[delectable catalyst]);
}