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.


Topics - Remaker

Pages: [1]
1
Scripting Chat / stacking boards
« on: October 06, 2009, 03:30:11 PM »
can anyone give me some tips on how to go about writing a script to stack boards into 60k piles, i got a few hundred stacks to deal with.

thx

2
Scripting Chat / 12xovers miner script
« on: September 28, 2009, 01:50:34 PM »
So with the new beta of EOU it seems to be running scripts fine.  I was using my LJ script and it has no issues because it doesnt involve any of the new gumps.  But with 12xovers mining script I cant figure out the new clickmods to do tinker tools and shovels.

I modded the jeweltypes line to include the new minables jewels
Code: [Select]
set %JewelTypes AXS_TWS_UWS_VWS_ZWS_GXS_BVJ_GVF_EVF_UVF_VUF_FVF_RVF_HVF_OVF
This is the part where you craft tools, any help fixing the clickmods would be ideal. :)
Code: [Select]
sub tinker
  set %making %1
  _tinker_retry:
  finditem %TinkerToolTypes C_ , #backpackid
  set #lobjectid #findid
  event macro 17
  gosub contwait craft 5
  if %contwait = false
     goto _tinker_retry
  if %tinkerlast = %making
     {
     ;_tinker_makelast:
     gosub clickmod 282 413
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 29 413
     click %x %y f
     return
     }
  if %making = tinker
     {
     set %tinkerlast tinker
     gosub clickmod 28 112
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 232 131
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 29 413
     click %x %y f
     }
  if %making = shovel
     {
     set %tinkerlast shovel
     gosub clickmod 28 112
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 383 271
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 234 71
     click %x %y f
     wait %wait_craftgump
     gosub contwait craft 5
     gosub clickmod 29 413
     click %x %y f
     }
return

;;;;;;;;   this is the clickmod sub below
sub clickmod
   set %x #contposx + %1
   set %y #contposy + %2
return

i fixed the cont size earlier in the script, but i cant fix this part it seems.

3
General UO Chat / Who else???
« on: September 20, 2009, 11:26:15 AM »
Who else rarely plays uo with easyuo down... i know im one of them.

 :'(

4
New member introductions / Greetings
« on: August 31, 2009, 04:46:51 PM »
Hello from an old UO player.

I've been playing UO off and on for the past 4-5 years, before that played 24 hours a day since release. ;D

Mostly I have played as strictly pvping but recently i have been extremely active in pvm, vendors, resource gathering, and BODs.  I've used many scripts over the years and even tried tackling the task of writing my own a few times with guidance from a knowledgeable friend of mine.  I'm assuming this is the new uocoders site because i've seen some of the same faces that were there posting here.  I was a member of that site a while ago.

Heres a short/simple script that  I wrote trying to learn how to script effectively. Hope to see you on the boards.  ;)

Code: [Select]
;=======================================;
; Script Name: Necromancy Trainer       ;
; Author: Remaker                       ;
; Version: 1.0                          ;
; Client Tested with: 6.0.6.1           ;
; EUO version tested with: 1.5 build 132;
; Shard OSI / FS: OSI Tested            ;
; Public Release:                       ;
; Purpose: Train Necromancy from 30-120 ;
;          Opens backpack to keep you   ;
;          Logged in.                   ;
;      __  __  __  __  __  __  __       ;
; |  ||  |/  `|  ||  \|__ |__)|__       ;
; |__||__|\__.|__||__/|__ |  \ __|      ;
;    http://www.uocoders.com/           ;
;=======================================;

;Choose your skill cap
set %skillcap 1200

chooseskill necr

event macro 8 2


mainloop:
if #skill = %skillcap
gosub end

if #skill < 300
   display Train your necromancy and restart the script
   HALT

while #skill >= 300 && #skill < 499   ;pain spike

   {
   event macro 8 7
   if #mana > 5
   event macro 23 0
   gosub meditation
   goto mainloop
   }

while #skill >= 500 && #skill < 699    ;horrific beast

   {
   event macro 8 7
   if #mana > 11
   event macro 15 106
   wait 3s
   gosub meditation
   goto mainloop
   }

while #skill >= 700 && #skill < 899    ;wither

   {
   event macro 8 7
   if #mana > 23
   event macro 15 115
   wait
   gosub meditation
   goto mainloop
   }

while #skill >= 900 && #skill < 1099   ;lich form

   {
   event macro 8 7
      if #mana > 23
   event macro 15 107
   wait 5s
   gosub meditation
   goto mainloop
   }

while #skill >= 1100 && #skill < 1200  ;vampiric embrace

   {
   event macro 8 7
   if #mana > 23
   event macro 15 113
   wait 3s
   gosub meditation
   goto mainloop
   }

sub meditation
    if #mana < 23
    {
    event macro 13 46
    wait 10s
    }
return

sub end
    display Congrats! You're Done!
    HALT

return


Pages: [1]