• Due to recent spam attacks that heavily used compormised accounts we did reset all user passwords, AGAIN, if it happens and your account got compromised again due to re-used passwords your account will be perma-banned.

how to make npc have close button

change

delitem .currency, .@q[3]; // delete items
rentitem .@q[0], .@day * 86400; // rent an items. 86400 = 1 day in seconds
callsub ClearBought;
end;

into

Code:
	delitem .currency, .@q[3]; // delete items
	rentitem .@q[0], .@day * 86400; // rent an items. 86400 = 1 day in seconds
	callsub ClearBought;
	close;
 
Back
Top