Assessing storage meat

Winterbay

Active member
Is there a way, in ash, to get the amount of meat I have in Hagnks? I know I can go to the meat manager and look at it, so Mafia has obviously some sort of idea on how much I have, but there appears to be no ash-function to get this number. Is that correct?

If so I think I'll go and make a FR for that function.

(I've tried "ashref storage" and my_storage_met(), in accordance with my_meat() and my_closet_meat())
 
There isn't, (that i'm aware of) I remember looking before.

networth uses: (requires zlib)

Code:
storage_meat = excise(visit_url("storage.php"),"have "," meat").to_int();
 
Interestingly enough that won't work since for some reason the text from the war is in the page text as well (I don't have time for this right now. I've got a war to fight!) meaning that "have " is matched earlier than wanted. Changing it to "You have " works though so thanks :)
 
I had to change to URL to

int storage_meat = excise(visit_url("storage.php?which=5"),"You have "," meat").to_int();

to get it to work for me (using it to track Mall sales by tracking meat gained since last login)
Dave
 
Back
Top