Search found 887 matches

by demonnic
Mon Sep 13, 2010 11:13 pm
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 57818

Re: YATCO - Yet Another Tabbed Chat Option. This time it blinks

from what I've read elsewhere, there is a bug in the pre7 to do with copy() and appendBuffer() . This is one of the dangers of using the pre-release versions, unfortunately.
by demonnic
Tue Sep 07, 2010 8:11 pm
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 57818

Re: YATCO - Yet Another Tabbed Chat Option. This time it blinks

What he said. That's pretty much how i do it.
by demonnic
Tue Sep 07, 2010 4:42 pm
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 57818

Re: YATCO - Yet Another Tabbed Chat Option. This time it blinks

You will need to trigger for all the lines you wish to capture, yes. If you want it to not show in the main output anymore, add a deleteLine() to the trigger. The window should be wrapping the lines without a problem. Do you have achaea's wrapwidth set to 0 so that it lets mudlet do all the word wra...
by demonnic
Thu Sep 02, 2010 2:51 am
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 57818

Re: YATCO - Yet Another Tabbed Chat Option. This time it blinks

Awesome, I'm glad that helped you arrive at a viable solution.
by demonnic
Tue Aug 31, 2010 4:18 am
Forum: Help Forum
Topic: unable to use mudlet
Replies: 12
Views: 7609

Re: unable to use mudlet

Try dropping a copy in system32 folder, I suppose. Haven't checked on win7 or vista, but in xp it's c:\windows\system32\ I believe.

Also, what version of windows? XP, Vista, 7... 32bit or 64bit?
by demonnic
Mon Aug 30, 2010 11:08 pm
Forum: Help Forum
Topic: unable to use mudlet
Replies: 12
Views: 7609

Re: unable to use mudlet

did you extract the dll from the zip file first? It won't let me post dll files directly, so it had to be zipped up. That could be the issue. I should have specified.
by demonnic
Mon Aug 30, 2010 9:19 pm
Forum: Help Forum
Topic: Help with an autoclotter
Replies: 4
Views: 3319

Re: Help with an autoclotter

Sure thing. When you run into issues where it seems like the script doesn't do anything, it's often good to open up the error console. It will usually give you a hint as to the issue, and the line it's happening on. Also, those work because you're comparing two strings which have nothing but digits ...
by demonnic
Mon Aug 30, 2010 9:09 pm
Forum: Help Forum
Topic: Help with an autoclotter
Replies: 4
Views: 3319

Re: Help with an autoclotter

matches[2] is a string. You need it to be a number. Change the one line to


bleed = tonumber(matches[2])
by demonnic
Sun Aug 29, 2010 3:28 pm
Forum: Howtos, FAQs and Tips & Tricks
Topic: How to save variables to file
Replies: 5
Views: 5377

Re: How to save variables to file

remember("VariableName")
saveVars()


the quotes are important, you have to pass remember() the name of your variable as a string, not the variable itself. To load 'em back up:

loadVars()


There're other ways, but this method does work.
by demonnic
Sun Aug 29, 2010 5:07 am
Forum: Scripts & Packages
Topic: YATCO - Yet Another Tabbed Chat Option. This time it blinks
Replies: 58
Views: 57818

Re: YATCO - Yet Another Tabbed Chat Option. This time it blinks

Syrik - line 2 =) Omit: Well, if you can't set your mud to let mudlet do the wrapping for you: Make your initial trigger to capture. Set its fire length to 99 Make another trigger for your prompt (yeah, a second prompt trigger even if you've got one) Drag it on to the first trigger for capturing the...