Bug - Not A Bug Trying to use a wang item breaks a script on my chatbot

HasteBro

Member
Using build 16778, when the script tries to use a wang this happens:

Code:
> ash use(1, $item[wang]);

[¶625] has no matches.
Returned: false

625 is the item number for wang, so probably a typo somewhere is causing that. Not sure if any other items cause this error.
 
Last edited:

heeheehee

Developer
Staff member
So, inherently the problem here is that Mafia can't find that item in the list of "usable" items, since wangs are targeted. You can't use a brick, either.

Code:
cli_execute("throw wang at " + my_name())
 
Top