Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bendel

Pages: [1] 2 3 ... 14
1
Orion UO Client / Re: Orion.FindList
« on: January 29, 2023, 10:57:16 AM »
The ".length" property is a property of an array in JavaScript that returns the number of elements in the array.

The 2nd line of the code uses a for loop to iterate over the elements in the "sorttobag" array. The loop starts from 0 and goes until the end of the array, which is determined by "sorttobag.length". The variable "i" is used as the loop counter and is incremented on each iteration.


Sorry, I had this to chatgpt and it seems correct 😅

2
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 16, 2022, 10:58:50 AM »
very nice script!

if I can recommend something.
add at after line 221

        if (Orion.Contains(egg.Properties(), 'Locked Down')){
           Orion.Ignore(egg.Serial());
        }

because some players lock the eggs in theirs house, so the script try to grab it

3
Welcome to you Jack,

I fully respect your melancholy post, UO is a perfect alternative to the disgusting world we live in.
I hope that you will find in our community, all the scripts that will make you vibrate.

See you soon !

4
Stealth scripts / Re: [C#, ScriptSDK] EggFarmer
« on: March 14, 2020, 10:06:44 AM »
Nice to see you back again !!

Thanks for updating the script :)

5
Razor Enhanced / Re: No Macros :(
« on: October 26, 2019, 09:17:44 AM »
Just learn python it will be enough :)

6
Razor Enhanced / Re: Dead already?
« on: October 23, 2019, 10:29:20 AM »
It's still maintained by a dev from the team at http://razorenhanced.net/ instead of .org

community still active tho,  only Alexdan (creator of Razor Enhanced) seems to be out of game for a about a year.

7
Razor Enhanced / Re: Trying enhanced..... failing a bit, could use a hand
« on: November 01, 2018, 02:50:56 AM »
Actually, i'm using this uovmc do i don't need mining.

It scan the ingame map and then add a marker on the map.


8
Razor Enhanced / Re: Trying enhanced..... failing a bit, could use a hand
« on: October 27, 2018, 06:58:11 PM »
actually it's IronPython.

If you need another examples, don't hesitate to ask :)

9
Razor Enhanced / Re: Trying enhanced..... failing a bit, could use a hand
« on: October 27, 2018, 10:28:54 AM »
Try something like this:

Code: [Select]
from System.Collections.Generic import List
from System import Byte
fil = Mobiles.Filter()
fil.Enabled = True
fil.RangeMax = 10
fil.Notorieties = List[Byte](bytes([3,4]))

enemies = Mobiles.ApplyFilter(fil)
Mobiles.Select(enemies,'Nearest')
for enemy in enemies:
    if not Player.HasSpecial:
        Player.WeaponSecondarySA()
    Player.Attack(enemy)
    Target.ClearLast()

10
Razor Enhanced / Re: IDOC House Scanner (OSI/FS)
« on: October 01, 2018, 05:10:57 AM »
work OSI/FS

11
Razor Enhanced / Re: Razor Enhanced section
« on: September 04, 2018, 06:04:21 AM »
Someone from RazorE community 'Soltrac', also made an DLL to use C# without the need of vs studio for thoses who don't use Python, but can't be debugged as python scripts are.

Quote
Just add the ExtendRazor.dll to the project and call: ExtendRazor.Start() on a new button. On close, ExtendRazor.StopAll() should be called to close all opened threads

Here is the source.

12
Razor Enhanced / IDOC House Scanner (OSI/FS)
« 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 !

13
Razor Enhanced / Re: Razor Enhanced section
« on: September 03, 2018, 10:14:20 AM »
Thanks Tidus & gimlet ! really appreciate !

14
Razor Enhanced / Razor Enhanced section
« on: September 03, 2018, 08:07:21 AM »
For years, apart from Easyuo and Stealth, almost all UO Assists are out of date or just not working any more.

This tool is open source updated for latests features of EA and compatible for the majority of shards.
It include a IronPython dot net based built-in where Python features can be used.

The community of the project is growing a lot and I think it would be nice if there was a section dedicated to this tool on this site.
So my question is, would there be a possibility of having a section for Razor Enhanced?

Site : http://razorenhanced.net
Discord : https://discord.gg/P3Q7mKT
Source : https://bitbucket.org/RazorFork/razor-enhanced
Official Script Library : https://bitbucket.org/Alexdan/re-script-library/src

15
Stealth Client / Re: Easy uo dll?
« on: September 03, 2018, 07:42:54 AM »
Playing EC on stealth is interesting but can be buggy..
Example, if you do a resync on client, your character can be stuck on walls in a house or something.

Pages: [1] 2 3 ... 14