fold stinky cheese eye
cli_execute("fold stinky cheese eye");
Is there a command that gets mafia to fold an item for you (For example, from the stinky cheese eye to the diaper, and than back again later in the script)
> help fold
fold[?] item - produce item by using another form, repeated as needed.
Is there a way to get yourself wanged automatically? "Use Wang" doesn't do it.![]()
alias wang => ash string name; if ("%%"==""){name=my_name();} else {name="%%";} string page=visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);
alias wang => ash if(item_amount($item[wang])==0) {buy(1,($item[wang])) ; } string name; if ("%%"==""){name=my_name();} else {name="%%";} string page=visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);
If you really want to, you can also make the alias buy a wang for you before wanging, like this:
Code:alias wang => ash if(item_amount($item[wang])==0) {buy(1,($item[wang])) ; } string name; if ("%%"==""){name=my_name();} else {name="%%";} string page=visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);
alias wang => ash if(item_amount($item[wang])==0) {retrieve_item(1,($item[wang])) ; } string name; if ("%%"==""){name=my_name();} else {name="%%";} string page=visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);
alias wang => ash retrieve_item(1,$item[wang]); string name; if("%%" == "") name = my_name(); else name = "%%"; string page = visit_url("curse.php?action=use&pwd&whichitem=625&targetplayer="+name);