Author Topic: IDOC House Scanner (OSI/FS)  (Read 9748 times)

0 Members and 1 Guest are viewing this topic.

Offline bendelTopic starter

  • Moderator
  • *****
  • Posts: 215
  • Activity:
    0%
  • Reputation Power: 4
  • bendel has no influence.
  • Respect: +34
  • Referrals: 0
    • View Profile
IDOC House Scanner (OSI/FS)
« on: September 04, 2018, 05:40:51 AM »
0
This is a simple script to check if a house sign is condemned.
If house is condemned, you will receive an event message.

enjoy !
« Last Edit: September 04, 2018, 07:07:33 AM by bendel »

Offline DirtyWZl

  • Newbie
  • *
  • Posts: 4
  • Activity:
    0%
  • Reputation Power: 1
  • DirtyWZl has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #1 on: September 15, 2018, 09:05:23 AM »
0
What are you running this script in????

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.4%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #2 on: September 15, 2018, 08:36:07 PM »
0
This is for razor enhanced, similiar to uoassist but more features including the ability to add scripts.

Offline Skull

  • Newbie
  • *
  • Posts: 2
  • Activity:
    0%
  • Reputation Power: 1
  • Skull has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #3 on: September 30, 2018, 04:53:28 PM »
0
Will this work on OSI? :police:

Offline bendelTopic starter

  • Moderator
  • *****
  • Posts: 215
  • Activity:
    0%
  • Reputation Power: 4
  • bendel has no influence.
  • Respect: +34
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #4 on: October 01, 2018, 05:10:57 AM »
0
work OSI/FS

Offline Snoop

  • Newbie
  • *
  • Posts: 5
  • Activity:
    0%
  • Reputation Power: 1
  • Snoop has no influence.
  • Respect: +1
  • Referrals: 1
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #5 on: December 11, 2018, 03:22:55 PM »
0
very nice  thanks

Offline fallendeacon

  • Newbie
  • *
  • Posts: 3
  • Activity:
    0%
  • Reputation Power: 1
  • fallendeacon has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #6 on: May 02, 2019, 02:52:39 PM »
0
Fixed version for non-OSI servers without properties:


There are 1 attachment(s) in this post. You must register and post an acceptable introduction to download
IDOCScanner.py

Offline great

  • Newbie
  • *
  • Posts: 2
  • Activity:
    0%
  • Reputation Power: 1
  • great has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #7 on: November 11, 2021, 09:36:35 AM »
0
ty

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.4%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #8 on: November 11, 2021, 01:45:10 PM »
+1

Offline prodigyrick

  • Newbie
  • *
  • Posts: 8
  • Activity:
    0%
  • Reputation Power: 0
  • prodigyrick has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: IDOC House Scanner (OSI/FS)
« Reply #9 on: November 21, 2023, 08:49:49 PM »
0
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]

Offline dozenrl

  • Newbie
  • *
  • Posts: 4
  • Activity:
    0%
  • Reputation Power: 1
  • dozenrl has no influence.
  • Gender: Male
  • Respect: 0
  • Referrals: 0
    • View Profile
    • Watercooler Discord Server
Re: IDOC House Scanner (OSI/FS)
« Reply #10 on: February 25, 2024, 01:15:14 AM »
0
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,

Tags: