Author Topic: New, but lost other new account.  (Read 2919 times)

0 Members and 1 Guest are viewing this topic.

Offline TripleViewTopic starter

  • Newbie
  • *
  • Posts: 4
  • Activity:
    0%
  • Reputation Power: 0
  • TripleView has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
New, but lost other new account.
« on: August 26, 2009, 07:20:11 PM »
0
Just a copy and paste from the other post of mine, my ZenMaster account got screw'd I didn't really want my email showing and with these forums you can't change it gah..

I'm Zen some how my account got messed up so I made a new one  
I play OSI shards I been around for ages I helped make some of the first Sphere shards i'm really interested in the Heartwood script here I want to take a look at how he made the sub to toggle quest items.

I had no idea it was so hard to get off restricted access :/
But ehmm I have been around UO since it came out helped make some of the first Sphere shards, I think the new thing is RunUO but I don't know I havn't been into that scene for some time. I also helped make the first EverQuest EMU called EQemu, that also got be banned from EQ

I also work in C, and VB and have made some really nice 2d engines, and 3d engines.

When I come across a problem like the one I am having I really want to figure it out so Trail if you could send me the Heartwood script that would be great, I just want to know how you did the quest item toggler without lexia subs. Thanks
« Last Edit: August 26, 2009, 07:30:16 PM by TripleView »

Offline Endless Night

  • Global Moderator
  • *
  • *
  • Posts: 5467
  • Activity:
    0%
  • Reputation Power: 62
  • Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!Endless Night is awe-inspiring!
  • Respect: +786
  • Referrals: 1
    • View Profile
Re: New, but lost other new account.
« Reply #1 on: August 26, 2009, 07:47:29 PM »
0
read your other post for a response on the quest toggle. 
Outlaw Josey Wales - "Manwink, A Long Gone Scripty, and Endless are always teasing us with their private sections lol. What there realy saying is scripters rule and users drool."
Briza - "Your a living breathing vortex of usefulness."

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13314
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +3090
  • Referrals: 34
    • View Profile
    • ScriptUO
Re: New, but lost other new account.
« Reply #2 on: August 26, 2009, 09:24:43 PM »
0
Eww, lexia subs...  :)
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline TripleViewTopic starter

  • Newbie
  • *
  • Posts: 4
  • Activity:
    0%
  • Reputation Power: 0
  • TripleView has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: New, but lost other new account.
« Reply #3 on: August 27, 2009, 01:47:19 AM »
0
GAWD I made the exact same thing you did trail only dif was mine didn't click the quest items and it well here is the whole script

Code: [Select]
InitEvents
set %makecount 0
set %go 0

;Get on it!
gosub GetQuest

main:

  if %go = 1
  {
    if %makecount > 0
    {
      gosub checkforcraftmenu
      if #result
      {
        gosub makeone
      }
    }
}
  ; wonder if this could save some cputime ?
  wait 5
goto main



sub GetQuest
click 921 475 f ;SET THIS TO THE NPCS BAR
gosub CheckQuest

sub CheckQuest
wait 5
call kalocr.txt GetMLQInfo QuestOffer #contposx #contposy
;Check for A Simple Bow quest
if %1 = A , #spc , Simple , #spc , Bow
{
;Looks like we got it
;Accept it and start making the bows
click 149 454 f ;SET THIS TO THE ACCEPT BUTTON
;Open up the Crafting Menu
  set #lObjectID REYDOMD
  event Macro 17 0
  wait 2s
set %makecount %makecount + 10
set %go 1
goto main
}
;Looks like we didn't get it this time
;So lets cancel the offer and try again
gosub CancelOffer

sub CancelOffer ; not needed
set !x #contposx + 350
set !y #contposy + 400
click !x !y f dmc
for !_ 5 1
gosub GetQuest
{
if #contsize <> 507_436
break
wait 1
gosub GetQuest
}
while #contsize <> 507_436
wait 1
set !x #contposx + 350
set !y #contposy + 400
click !x !y f dmc
for !_ 5 1
gosub GetQuest
{
if #contsize <> 507_436
break
wait 1
gosub GetQuest
}
return

sub checkforcraftmenu
  if #contSize = 530_437
  {
    return #true
  }
  return #false
return

sub makeone
  click 330 460
  set %makecount %makecount  - 1
  if %makecount = 0
  {
    set %go 0
  }
return

well most of it anyways aside from a few subs I had in other places it uses kalocr subs also so its ALOT ALOT slower then urs.
Alot of setting up to do before you even start also, then again it was only a few hours worth of work but I DID want it to end up like yours but the rails dont work top notch but I should be able to fix that eventually.

Post Merge: August 27, 2009, 04:37:00 AM
I tried that heartwood quest it don't work half the time :/

it don't work 99.9% of the time, gah rails are fuk'd it keeps walking out of heartwood for no reason


Post Merge: August 27, 2009, 02:45:01 AM
??? I take that back 50% of the time it works the other 50
%  it at least works once you get into heartwood and get to the quest npcs.
« Last Edit: August 27, 2009, 02:45:01 AM by TripleView »

Tags: