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

Pages: [1]
1
Off Topic / Re: "Cloud" storage - what's your take?
« on: July 24, 2013, 06:30:54 AM »
I've got a big-ass NAS at home, that's my cloud. No one gets my data but me. All of my mobile devices can VPN in to my own network and access or sync at any time.

I do use dropbox for work though, particularly if I need to sync files to my phone and can't be arsed

2
Scripting Chat / Re: Carpentry Training Scripts?
« on: July 20, 2013, 05:17:25 PM »
lol @ someone thinking I was saying the script is crap, I was simply laughing at the fact that there is a sub called "crap" in there

3
Scripting Chat / Re: Carpentry Training Scripts?
« on: July 19, 2013, 08:26:49 AM »
here my carp script
gosub crap

4
OpenEUO Scripting Chat / Re: Is anyone using FluentUO?
« on: May 23, 2012, 09:58:41 AM »
This is the first I've ever heard of FluentUO.
project page:
http://fluentuo.googlecode.com

and on the EasyUO forums:
http://www.easyuo.com/forum/viewtopic.php?t=43289

It's pretty powerful, and I think not many people know about it. For instance, you can make a potion chugging script with one line:
Code: [Select]
Backpack().WithType(potion).First.Use()
The finditem code has built in property parsing and is completely object oriented. The items/mobiles returned from the queries are tables that are "intelligent", so it won't try to query properties on an object until you try to access them. For instance, the script below would calculate how much LRC and LMC you were currently wearing:
Code: [Select]
local equipment = Equipment().Items
local lrc, lmc = 0, 0
for i=1,#equipment do
   lrc = lrc + (equipment[i].Property.LowerReagentCost or 0)
   lmc = lmc + (equipment[i].Property.LowerManaCost or 0)
end

print("LRC -> "..lrc.." LMC->"..lmc)

OEUO is a blessing for the script authoring community, but for the average neophyte script runner, Lua is just way over most of their heads.  I'm sure when Cheffe can come full-circle with OEUO and the UI stuff, that'll spawn a much needed increase in the interest of OEUO and wonderful projects like FluentUO.  It certainly will get me going again.
So I suppose this is a question for the script authoring community, because FluentUO is awesome.

5
OpenEUO Scripting Chat / Is anyone using FluentUO?
« on: May 23, 2012, 09:30:20 AM »
Just wondering... how many people are using FluentUO?

Also wondering, if you're not... why aren't you?

6
K&R all the way for me. Except EUO (cause you can't) I stick to allman. Whitesmiths for the fail.

7
New member introductions / iamwin
« on: August 13, 2008, 09:13:19 PM »
the name says it all

I have played UO since september of 1997 every day. I have 27 scripts in the PSL, some of the highest rated on the EUO site. I'm also a structural engineer by day.

Pages: [1]