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 - Endless Night

Pages: 1 2 3 [4] 5 6 ... 260
46
Here the  new icon
gosub AddICon   SpecialAttack         #false  Howl_Of_Cacophony.gif              4881333 12447727  HowlOfCacophony

I tested tonight and it detect the icon.  Enjoy

nice.

47
The problem that kept coming up in beta was the cont size of the context menu. And it has changed even more since then. So I am trying to figure out ways to handle the ever changing location of the toggle quest item option.

Any thoughts?  More efficient ways?

See  TrailMyx's Context Menu hander  subs-->  http://www.scriptuo.com/index.php?topic=30.0

48
New member introductions / Re: Hi Everyone
« on: February 26, 2020, 01:42:03 PM »
welcome to scriptuo.

49
Scripting Chat / Re: Easiest way to implement Anti AFK
« on: February 26, 2020, 01:39:31 PM »
If you want to be fancy, EN's have an Anti Idle Subs.  Not sure where I found them in the pass


http://www.scriptuo.com/index.php?topic=2454.msg51906#msg51906

50
New member introductions / Re: Greetings and Salutations!
« on: February 26, 2020, 01:37:21 PM »
welcome to scriptuo.

51
New member introductions / Re: 10 years later my account is unbanned
« on: February 26, 2020, 01:36:37 PM »
welcome to scriptuo.

52
New member introductions / Re: Old time UO player
« on: February 20, 2020, 10:18:34 AM »
welcome to scriptuo.

53
New member introductions / Re: Hello From Mungo Tolkien
« on: February 20, 2020, 10:14:07 AM »
welcome to scriptuo

54
New member introductions / Re: Hello I'm Creed
« on: February 20, 2020, 10:12:29 AM »
welcome to scriptuo.

55
New member introductions / Re: Hello from CreepCraft
« on: February 15, 2020, 12:29:53 PM »
welcome to scriptuo.

56
Endless Nights' Script Library / Re: ENs - Script Library
« on: February 15, 2020, 12:14:49 PM »
The ghost,  My menus system is a bit more complex for sure .. See example script below to get you started....

MenuDefinition Options (wrapped in _):   ControlBar, Status, HeartBeat, Location, ToolBarsAllowed, Mainbar1, Mainbar2, Mainbar3, Action, House, XIIXSuperStuff, Info, Antiidle, ScriptBar, ScriptTools, EliteBar, MiscTools, Gardening, Resources, Health, PlayerBar, ScriptInfo, Overseer

Play around adding different menu definition options ..

Get a copy of EN-Settings.txt here <- http://www.scriptuo.com/index.php?topic=10609.msg89005#msg89005
Reason I use EN-Settings.txt to record your custom pathing is that this way you can share the script without people needing to modify your path as they will have thier own en-settings.txt with thier custom pathing.

Code: [Select]
set %EN_ScriptName   The-Ghost-Menu-Experiement
call #curpath , ENs-Settings.txt       ; Put your custom pathing information inside here.
call %EN_SubScriptPath , \ENs-Subs-Standard.txt  ENs_SetupSubNamesAndPaths     ; see this sub for all pathing vars to subs that get set
set %EN_Script_MenuDefinition _ControlBar_Status_HeartBeat_Location

call %ENs_Subs_Menus SetProgressBox %EN_ScriptName - #CharName  ; initalize menu

set !Count 1
Repeat
  call %ENs_Subs_Menus CheckProgressMenu    noghost    ; if dont add noghost option checks if you are a ghost.
  ; do something
  set !Count !Count + 1
  call %ENs_Subs_Menus GLOBALSetStatus  Status Line - My Count: !count
  wait 1
until  %DontStop = #false
Halt


Above code will give you a fully functional menu with   Pause,  Exit , EUO-Pause, EUO-Halt, Settings, ? Buttons,  Inform  you of your current location, provide a script heartbeat so you can always see the script is functioning and provide a script status line.


Its pretty powerfull stuff, let me know what you think.



57
Endless Nights' Script Library / Re: ENs - Script Library
« on: February 14, 2020, 10:45:20 AM »
Version 6

- Location data added.
- who knows what else has changed been 7 years since last updated.



58
Simple Test script to read and display icons.

Code: [Select]
; test buffbar script x300000
for !pp 1 300000
  {
   call ScanBuffBar
    setuotitle %BuffBarCalls : %BuffBar2ndScan : %BuffBarSubsCalls - BAR: %BuffbarDirection - Icons: %BuffBarIconsFound : %BuffBarIconsCount - %BuffBarIconNames
    }
halt

59
Endless Nights' Script Library / Re: ENs - Script Library
« on: February 12, 2020, 08:48:14 AM »
Sry for the extremely late reply, it didn't work because you didn't set pathing correctly on one attempt and called a non existent sub on other attempt.  You also seemed to be getting call and set confused.  FYI  there is no Sub 'EN_Sellitems' in the file ENs_Subs_BondsAndNPCs.txt   (the sub name is 'sellitem'). You reference Variable %ENs-Subs-BodsAndNPCs  but at no point did you create this variable instead you reassigned %EN_subScriptPath.  Below would be the actual correct code you would need.

With Pathing Assigned
Code: [Select]
call #curpath , ENs-Settings.txt 
set %ENs-Subs-BodsAndNPCs   %EN_SubScriptPath , \ENs-Subs-BodsAndNPCs.txt
Call %ENs-Subs-BodsAndNPCs SellItem YYJVQ Neztam Talk WZF 10 1 End
halt

OR if you dont want to set pathing you can call it this way (setting pathing is preferable)
Code: [Select]
call #curpath , ENs-Settings.txt
call %EN_SubScriptPath , \ENs-Subs-BodsAndNPCs.txt      SellItem YYJVQ Neztam Talk WZF 10 1 End


60
Scripting Chat / Re: What Facet am I on ??
« on: February 12, 2020, 08:30:16 AM »
Cool.   Apparently sometime in the past I had already worked on this and had created a list of all the banks,  citys and moongates on all the different facets.    Can find it in my ENs-Subs-Location.txt  (http://www.scriptuo.com/index.php?topic=10609.0)   It will be nice to add this landmass information to my database.

I knew I must have known that stuff once..  lol  forgotten more than i know ...


Hers a link to some snippets i just created, prior to finding my old code...  maybe useful to someone ...  http://www.scriptuo.com/index.php?topic=2454.msg122269#msg122269

Pages: 1 2 3 [4] 5 6 ... 260