ScriptUO

Scripting Resources & Utilities => Razor Enhanced => Topic started by: bendel on September 04, 2018, 05:40:51 AM

Title: IDOC House Scanner (OSI/FS)
Post by: bendel on September 04, 2018, 05:40:51 AM
This is a simple script to check if a house sign is condemned.
If house is condemned, you will receive an event message.

enjoy !
Title: Re: IDOC House Scanner (OSI/FS)
Post by: DirtyWZl on September 15, 2018, 09:05:23 AM
What are you running this script in????
Title: Re: IDOC House Scanner (OSI/FS)
Post by: Crisis on September 15, 2018, 08:36:07 PM
This is for razor enhanced, similiar to uoassist but more features including the ability to add scripts.
Title: Re: IDOC House Scanner (OSI/FS)
Post by: Skull on September 30, 2018, 04:53:28 PM
Will this work on OSI? :police:
Title: Re: IDOC House Scanner (OSI/FS)
Post by: bendel on October 01, 2018, 05:10:57 AM
work OSI/FS
Title: Re: IDOC House Scanner (OSI/FS)
Post by: Snoop on December 11, 2018, 03:22:55 PM
very nice  thanks
Title: Re: IDOC House Scanner (OSI/FS)
Post by: fallendeacon on May 02, 2019, 02:52:39 PM
Fixed version for non-OSI servers without properties:

Title: Re: IDOC House Scanner (OSI/FS)
Post by: great on November 11, 2021, 09:36:35 AM
ty
Title: Re: IDOC House Scanner (OSI/FS)
Post by: Crisis on November 11, 2021, 01:45:10 PM
ty

yw
Title: Re: IDOC House Scanner (OSI/FS)
Post by: prodigyrick on November 21, 2023, 08:49:49 PM
I get:
[23:45:19] -   File "<string>", line 57, in <module>
[23:45:19] -   File "<string>", line 22, in __init__
[23:45:19] - TypeError: expected List[Int32], got List[int]
Title: Re: IDOC House Scanner (OSI/FS)
Post by: dozenrl on February 25, 2024, 01:15:14 AM
at the very very top of your script, add a line:

Code: [Select]
from System import Int32
and then in your signs list you have to change:

Code: [Select]
signs = List[int]((0x0BD2, 0x0B96, 0x0BA4, 0x0BA6, 0x0BA8, 0x0BAA,
to

Code: [Select]
signs = List[Int32]((0x0BD2, 0x0B96, 0x0BA4, 0x0BA6, 0x0BA8, 0x0BAA,