how to wipe signs?

Open discussion forum. For topics that do not fit anywhere else.
Post Reply
chunkygravy
New User
Posts: 4
Joined: Sun Jan 26, 2014 5:25 pm

how to wipe signs?

Post by chunkygravy »

I was wondering if there is a way to wipe all the signs.
i thought i found it in pkg\items\signs\config\init.cfg
wiped that file, but the signs are still there.
re-ecompiled my source
still there

do i need to del and re-realm gen my map to?

are the sign stuffed in another file as well?
Tomi
POL Developer
Posts: 478
Joined: Tue Feb 21, 2006 5:08 pm

Re: how to wipe signs?

Post by Tomi »

1 way is to loop through all the items you have in the world and check for signs and delete them.

something like:

Code: Select all

foreach realm in Realms()
	foreach item in ListObjectsInBox( 0, 0, -127, realm.width, realm.height, 128, _realm_iter )
               // Check here if it is a sign and delete it
   endforeach
endforeach
Post Reply