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 - Burnhazel88

Pages: [1]
1
General Discussion / Where is the SUO.exe app.
« on: July 04, 2021, 08:06:01 PM »
Been out for a bit come to DL app for new pc and link is broken  :\'(

I'm lost with out it I know a lot of people switched to the lua but i know nothing about it.


2
Scripting Chat / Re: Getting time and using it in a menu
« on: October 18, 2017, 02:22:27 AM »
You still messing with time or you get it all sorted?

3
Scripting Chat / Re: Any ideas how to shorten this up LOL
« on: October 12, 2017, 01:13:24 PM »
Thank you TM
 I have learned a lot from that little whip up.



OK
I had to look up the  % "Modulo Operator" to see how the math worked on that. Would not have thought of that in a million years.
Already had the AM PM figured out.
what I am trying to do now is I remove the 0 in front of 00 - 09 with str del now I want to replace it with a space to keep it lined up in my menu or someway to align it to the right.
is that even possible to have a space in beginning of %Variable

removed
Code: [Select]
      str len #RESULT
      if #STRRES = 1
         set #RESULT 0 , #RESULT

4
Scripting Chat / Any ideas how to shorten this up LOL
« on: October 12, 2017, 12:00:12 PM »
Working on adding clock to to a script and  wondering if this can be shortened some how.
Not a big fan of the 24 hour format.

Code: [Select]
;========= convert 24hr to 12 hr
if %24hrs = 00
{
  set %HH 12
}
if %24hrs = 01
{
  set %HH #spc , 1
}
if %24hrs = 02
{
  set %HH #spc , 2
}
if %24hrs = 03
{
  set %HH #spc , 3
}
if %24hrs = 04
{
  set %HH #spc , 4
}
if %24hrs = 05
{
  set %HH #spc , 5
}
if %24hrs = 06
{
  set %HH #spc , 6
}
if %24hrs = 07
{
  set %HH #spc , 7
}
if %24hrs = 08
{
  set %HH #spc , 8
}
if %24hrs = 09
{
  set %HH #spc , 9
}
if %24hrs = 10
{
  set %HH 10
}
if %24hrs = 11
{
  set %HH 11
}
if %24hrs = 12
{
  set %HH 12
}
if %24hrs = 13
{
  set %HH #spc , 1
}
if %24hrs = 14
{
  set %HH #spc , 2
}
if %24hrs = 15
{
  set %HH #spc , 3
}
if %24hrs = 16
{
  set %HH #spc , 4
}
if %24hrs = 17
{
  set %HH #spc , 5
}
if %24hrs = 18
{
  set %HH #spc , 6
}
if %24hrs = 19
{
  set %HH #spc , 7
}
if %24hrs = 20
{
  set %HH #spc , 8
}
if %24hrs = 21
{
  set %HH #spc , 9
}
if %24hrs = 22
{
  set %HH 10
}
if %24hrs = 23
{
  set %HH 11
}
if %24hrs = 24
{
  set %HH 12
}
Also the "#spc ," is not working as I thought it would. Gonna have to figure that one out.

5
Scripting Chat / Re: Copy text to clipboard
« on: October 11, 2017, 08:05:06 AM »
So what might this be useful for?  Just curious; seems like I'm missing something obvious.  But I'm cool that way. :p

Your I'D tool for example. Add a copy button

6
Scripting Chat / Re: Copy text to clipboard
« on: October 10, 2017, 04:12:02 PM »
This works on all versions of windows I believe.

 :o


lol never knew it. But I know now.    :D

7
Scripting Chat / Copy text to clipboard
« on: October 10, 2017, 01:52:42 PM »
Don't know if anyone figured this out yet but with windows 10 you can copy text to clipboard.
I plan on updating my ID script with it.
Code: [Select]
execute C:\Windows\System32\cmd.exe /c echo YOUR TEXT HERE | clip

that simple. I might be over reacting but I always wanted this for my ID script that I use daily... :D :D :D

8
Script Debug / Re: IgnoreItem Issue
« on: October 09, 2017, 05:15:01 AM »
The problem is you aren't doing another finditem after you ignore the item to

Yeah I saw that later on. I think I just had too many hours in front of the screen. Start over later and it all became clear.

Post Merge: October 09, 2017, 08:29:17 AM
I indexed the items cause later in my script I need to grab them id's again for another task

9
Script Debug / Re: IgnoreItem Issue
« on: October 06, 2017, 02:04:13 PM »
ok then tried basic goto loop with success but really hate using them .
Code: [Select]
loop1:
 finditem %item_list c_ #BACKPACKID
  if #FINDCNT > 0
  {
    exevent drag #FINDID
    wait 10
    exevent dropc %dropbag
    wait 10
    ignoreitem #FINDID 4
goto loop1
  }

10
Script Debug / IgnoreItem Issue
« on: October 06, 2017, 01:07:11 PM »
I'm having an issue with ignoreitem
 
Code: [Select]
   finditem %item_list c_ #BACKPACKID
  while #FINDCNT > 0
  {
    exevent drag #FINDID
    wait 10
    exevent dropc %dropbag
    wait 10
    ignoreitem #FINDID 4
  }
%dropbag is inside backpack and open grabs first item from backpack drops in bag the keeps pulling and dropping same item to and from %dropbag.

what am i missing here. other than caffeine in my veins.

11
Script Debug / Re: Is there a faster way?
« on: March 27, 2016, 09:42:54 AM »
If one account - just ignore the account input information and start with clicking on password input.

Making this a sub to call from other scripts. Some may use multiple accounts. Write once instead of over and over for other scripts if you know what I mean. Just was wondering if there was a more simple way that I was missing.

12
Script Debug / Re: Is there a faster way?
« on: March 24, 2016, 06:06:23 PM »
1 account multiple chars.
just was looking for something other than hitting back 16 times.

13
Script Debug / Is there a faster way?
« on: March 24, 2016, 04:08:16 PM »
Is there a faster or different way to accomplish this task of clearing account name from login? 

 


gosub clear_account_name

;-------------------------------------------------
sub clear_account_name
click 510 360 dmc
set %back_count 0
while %back_count < 16
{
key back
set %back_count %back_count + 1
}
return
;-------------------------------------------------

halt

14
New member introductions / Back again
« on: March 06, 2016, 06:29:25 PM »
Lost account info for old account. been off the game for over two years. back to playing again on a free server.
I am a novice at scripting. mostly tear up others to make them do what I want them to do. play stile is mostly solo and like to make or adjust scripts to help cut down on the carpal tunnel. not real big on afk scripting unless its skill training. hope that i have a little to contribute to your site.
was scared that no one was playing anymore and your site would be gone.

15
been looking for this script lost old account and pass info been off the game for a couple of years.

Pages: [1]