ID:175847
Mar 4 2003, 5:00 pm
|
|
how would i make it so u can only use something 3 times like entering a room
|
Copyright © 2024 BYOND Software.
All rights reserved.
<code>obj/anobjthatcanbeuseddonchaknow var/usesleft=3 verb/use() if (usesleft<=0) usr << "[src] cannot be used any more times." return usr << "You use [src]" usesleft--</code>