Search found 287 matches

by icesteruk
Fri Jan 09, 2015 3:48 pm
Forum: Help Forum
Topic: Most efficient way to handle this?
Replies: 4
Views: 3795

Re: Most efficient way to handle this?

Vadi wrote:Yeah... (?) You can always create another for more.
Or Create one per class Incase Admin change a line your not at a lost as to find WHICH trigger 'file' the trigger is in..
by icesteruk
Wed Jan 07, 2015 7:27 pm
Forum: Help Forum
Topic: Stringlist help
Replies: 3
Views: 3637

Re: Stringlist help

Akaya wrote:
Code: [show] | [select all] lua
table.concat(combat, "")
That was first thing I tried, it wouldn't work in a send thing :(

Thanks tho the first stuff helped :)
by icesteruk
Tue Jan 06, 2015 11:25 pm
Forum: Help Forum
Topic: Stringlist help
Replies: 3
Views: 3637

Stringlist help

Hey I have a list setup like combat = {"hello", "goodbye", "good morning", "that isn't going ot happen"} so if I do a 'for' to make it send it, it'll be like for k, v in pairs(combat) do send(v) end but it'll send them one at once, Does anyone know a way to se...
by icesteruk
Tue Jan 06, 2015 4:11 pm
Forum: Help Forum
Topic: Lua Code - can you do?
Replies: 8
Views: 6158

Re: Lua Code - can you do?

isn't that for linux?
by icesteruk
Tue Jan 06, 2015 1:21 am
Forum: Help Forum
Topic: Lua Code - can you do?
Replies: 8
Views: 6158

Re: Lua Code - can you do?

You could use loadstring to get a chunk then string.dump and then apply some transformations like cycling the bytes, swapping segments, etc. Transformations must be reversible. Then save to a file. I'd personally use something sufficiently simple to deter the majority of curious users as you likely...
by icesteruk
Fri Jan 02, 2015 1:12 am
Forum: Help Forum
Topic: Lua Code - can you do?
Replies: 8
Views: 6158

Re: Lua Code - can you do?

I didnt mean system as in OS i meant system as in 'package'

I normally sell/give my package out but seems others are giving it out also but I want to limit it to certain people only..

Wondering if you can do this in Lua?
by icesteruk
Wed Dec 17, 2014 4:44 pm
Forum: Help Forum
Topic: Lua Code - can you do?
Replies: 8
Views: 6158

Lua Code - can you do?

in Lua can you make it so your system only runs for certain usernames?

Or, can you make the system check a website database of usernames before downloading the variables?

I'm not the best with connecting mudlet to URL etc so its why I thought to ask here..
by icesteruk
Thu Nov 06, 2014 8:26 pm
Forum: Scripts & Packages
Topic: Who Windows
Replies: 3
Views: 4825

Re: Who Windows

Do you mean WHo as in QW as in EVERYONE online, or whos in the room?

The who in the room is pretty easy with GMCP.Room (think it is of top of my head) but the WHO as in who online is completely different..
by icesteruk
Thu Oct 02, 2014 9:41 pm
Forum: Mudlet Development
Topic: add Forum links to Website & Wiki
Replies: 10
Views: 14180

Re: add Forum links to Website & Wiki

Can you not like, add it to the template??
by icesteruk
Tue Sep 30, 2014 2:59 pm
Forum: Help Forum
Topic: mudlet curing table
Replies: 2
Views: 2828

Re: mudlet curing table

is ' afflictQueue ' the table you track if you have an affliction or not? If thats the case I use something like this function cure() for i,v in pairsByKeys(afflictionlist) do if afflictQueue[v.name] and elixir == 1 then send(v.cure) elixbal = 0.5 break end end end or something like that . I've not ...