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 - 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 / 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.

3
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

4
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.

5
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

6
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.

Pages: [1]