Moving from razor to steam

Agentodd

Journeyman
Im making the move from razor to steam but its hard going for me lol. I am old, daft and when I hear the word scripting I think of calligraphy, parchment and quills.

Forgive me if some of the questions I post here seem stupid :)

What is the purpose of the spell grid?

How do I arm disarm like in razor?

On the general tab what does that little chain icon do in the profiles section?
 
Last edited by a moderator:

Experience

Grandmaster
Message me and I can help you with most questions related to Steam.

The spell grid is like dragging the small spell squares out of your book but you only need to single click them and they won't get magically deleted if you accidentally click them.

Just go into hotkeys<Combat<Abilities<Disarm

You may also want to look into UoSteam.TheFoamingSquirrels.com to see other questions and pre-made scripts
 

God.RG

Grandmaster
Im making the move from razor to steam but its hard going for me lol. I am old, daft and when I hear the word scripting I think of calligraphy, parchment and quills.

Forgive me if some of the questions I post here seem stupid :)

What is the purpose of the spell grid?

How do I arm disarm like in razor?

On the general tab what does that little chain icon do in the profiles section?
Spell grid keeps a perfect grid of your spells wherever you want them. You can't right click them on accident and you only have to left click one time.

Combat options under hot keys.

I'm not sure.. Never really figured that one out.
 

Malkraven

Grandmaster
the little chain links the profile to the charcater so it auto loads profiles based on toon u log in as
 

Agentodd

Journeyman
the little chain links the profile to the charcater so it auto loads profiles based on toon u log in as

Ahhh im using that then :)

How do I filter horse noises? Razor let me do that specifically, hunting with a nightmare and a dragon so the horse noises need to go lol
 

Agentodd

Journeyman
Is there a way to enter the nearest gate without walking into it even if its under a pet and you cant see it?
 

Agentodd

Journeyman
Also backing up the profiles folder in the uo steam folder to dropbox is all I need to restore in case of an 'end of the world' event?
 

Ariakan99

Grandmaster
Searches for a gate in range and if found uses it - if not will tell you.

if @findtype 0xf6c 'any' 'ground' 1 2
@useobject 'found'
else
sysmsg 'no gate'
endif
 

Experience

Grandmaster
Is there a way to enter the nearest gate without walking into it even if its under a pet and you cant see it?
@unsetalias 'Gate'
if @findtype '0xf6c' '0' 'ground' '1' '8'
@setalias 'Gate' 'found'
pause 1000
while not @inrange 'Gate' 1
if @x 'Gate' > x 'self' and @y 'Gate' > y 'self'
run 'Southeast'
elseif @x 'Gate' < x 'self' and @y 'Gate' > y 'self'
run 'Southwest'
elseif @x 'Gate' > x 'self' and @y 'Gate' < y 'self'
run 'Northeast'
elseif @x 'Gate' < x 'self' and @y 'Gate' < y 'self'
run 'Northwest'
elseif @x 'Gate' > x 'self' and @y 'Gate' == y 'self'
run 'East'
elseif @x 'Gate' < x 'self' and @y 'Gate' == y 'self'
run 'West'
elseif @x 'Gate' == x 'self' and @y 'Gate' > y 'self'
run 'South'
elseif @x 'Gate' == x 'self' and @y 'Gate' < y 'self'
run 'North'
endif
endwhile
endif
if @inrange 'Gate' 1
usetype '0xf6c' 'any' 'ground' '2'
stop
endif
 
Top