Hyrtakos2008-03-21 21:58:47
QUOTE(white wolf @ Mar 15 2008, 01:54 PM) 493784
I've tried using MudMaster2000 and could never get it to work...I will try to get the error message again to see what's up but the thing I want to know is, will the speed match MushClient or is it slower? How does it compare to Zmud/Cmud's speed?
I don't know about cmud for sure, but it can smoke the others.
My old system had over 2000 largely unanchored triggers active at all times and I never experienced any lag with it whatsoever.
Unknown2008-04-22 06:23:38
I was trying to install the triggers:
You have not specified a script file name:
The trigger (salvecheck) subroutine named "salvehealing" could not be found.
The trigger (Wounds_1) subroutine named "woundsreset" could not be found.
The trigger (Purgativecheck) subroutine named "purgativehealing" could not be found.
The trigger (EQbalance) subroutine named "EQrecovery" could not be found.
The trigger (BALbalance) subroutine named "BALrecovery" could not be found.
The trigger (Purgativecheck2) subroutine named "purgativehealing" could not be found.
The trigger subroutine named "leftarm" could not be found.
The trigger subroutine named "rightarm" could not be found.
I did do everything as ordered to by the READ ME FIRST.
You have not specified a script file name:
The trigger (salvecheck) subroutine named "salvehealing" could not be found.
The trigger (Wounds_1) subroutine named "woundsreset" could not be found.
The trigger (Purgativecheck) subroutine named "purgativehealing" could not be found.
The trigger (EQbalance) subroutine named "EQrecovery" could not be found.
The trigger (BALbalance) subroutine named "BALrecovery" could not be found.
The trigger (Purgativecheck2) subroutine named "purgativehealing" could not be found.
The trigger subroutine named "leftarm" could not be found.
The trigger subroutine named "rightarm" could not be found.
I did do everything as ordered to by the READ ME FIRST.
Shishi2008-04-22 06:28:39
QUOTE(aliara @ Apr 21 2008, 11:23 PM) 504636
I was trying to install the triggers:
You have not specified a script file name:
The trigger (salvecheck) subroutine named "salvehealing" could not be found.
The trigger (Wounds_1) subroutine named "woundsreset" could not be found.
The trigger (Purgativecheck) subroutine named "purgativehealing" could not be found.
The trigger (EQbalance) subroutine named "EQrecovery" could not be found.
The trigger (BALbalance) subroutine named "BALrecovery" could not be found.
The trigger (Purgativecheck2) subroutine named "purgativehealing" could not be found.
The trigger subroutine named "leftarm" could not be found.
The trigger subroutine named "rightarm" could not be found.
I did do everything as ordered to by the READ ME FIRST.
You have not specified a script file name:
The trigger (salvecheck) subroutine named "salvehealing" could not be found.
The trigger (Wounds_1) subroutine named "woundsreset" could not be found.
The trigger (Purgativecheck) subroutine named "purgativehealing" could not be found.
The trigger (EQbalance) subroutine named "EQrecovery" could not be found.
The trigger (BALbalance) subroutine named "BALrecovery" could not be found.
The trigger (Purgativecheck2) subroutine named "purgativehealing" could not be found.
The trigger subroutine named "leftarm" could not be found.
The trigger subroutine named "rightarm" could not be found.
I did do everything as ordered to by the READ ME FIRST.
This free system is very VERY out of date, and won't cure everything.
http://forums.lusternia.com/index.php?showtopic=14977
is a much more up to date system.
Ethelon does currently sell a system for 25 credits which is very good, and handles things much better. He doesn't update this system.
Unknown2008-04-22 06:40:16
QUOTE(shishi @ Apr 22 2008, 01:28 AM) 504640
This free system is very VERY out of date, and won't cure everything.
http://forums.lusternia.com/index.php?showtopic=14977
is a much more up to date system.
Ethelon does currently sell a system for 25 credits which is very good, and handles things much better. He doesn't update this system.
http://forums.lusternia.com/index.php?showtopic=14977
is a much more up to date system.
Ethelon does currently sell a system for 25 credits which is very good, and handles things much better. He doesn't update this system.
Thank you.
P.S. Can I borrow 25 credits?
Furien2008-04-22 06:42:51
Hunt for it! Once you learn the general pattern to money making while bashing, 25 credits is easy peasy.
Unknown2008-05-14 03:21:05
I've just started studying a few of the systems that have been posted in these forums trying to teach myself to script in MUSHclient. Anyways, I was looking at Ethelon's scripts and am just wondering a couple things.
Example:
Sub herbcall (aff, herb)
setvariable "affliction_" & aff & "", "1"
if (getvariable("herbbalance") = 0 AND getvariable("affliction_aeon") = 0 AND getvariable("affliction_anorexia") = 0) then
setvariable "herbbalance", "1"
send "outr " & herb
send "eat " & herb
end if
end sub
Example:
Sub herbhealing (a, b, c)
set variable "herbbalance", "0"
if getvariable ("affliction_anorexia") = "1" then
1. Can someone explain to me what the purpose and effect of (aff, herb) is? Also, in the second example (a, b, c)?
2. When I load this into the system and try to access the clipboard with all the scripts, I receive this error message...
Error number: 0
Event: Compile error
Description: :1: '=' expected near 'herbcall'
Called by: Immediate execution
Say I put the first example at the very top of the clipboard, in front of all the other script. It'll say that 'herbcall' has that error. If I put the second example at the top, in front of all the other script, it'll say that 'herbhealing' has the error. Anyone able to enlighten me?
Thanks.
Example:
Sub herbcall (aff, herb)
setvariable "affliction_" & aff & "", "1"
if (getvariable("herbbalance") = 0 AND getvariable("affliction_aeon") = 0 AND getvariable("affliction_anorexia") = 0) then
setvariable "herbbalance", "1"
send "outr " & herb
send "eat " & herb
end if
end sub
Example:
Sub herbhealing (a, b, c)
set variable "herbbalance", "0"
if getvariable ("affliction_anorexia") = "1" then
1. Can someone explain to me what the purpose and effect of (aff, herb) is? Also, in the second example (a, b, c)?
2. When I load this into the system and try to access the clipboard with all the scripts, I receive this error message...
Error number: 0
Event: Compile error
Description: :1: '=' expected near 'herbcall'
Called by: Immediate execution
Say I put the first example at the very top of the clipboard, in front of all the other script. It'll say that 'herbcall' has that error. If I put the second example at the top, in front of all the other script, it'll say that 'herbhealing' has the error. Anyone able to enlighten me?
Thanks.
Unknown2008-05-14 10:50:31
1. The aff and herb parameters are passed into the subroutine when it gets called. Look for where it's called in Ethelon's code to find out how it's being used.
2. You're probably setup with the default script language, which is Lua. These scripts are all in VBS.
2. You're probably setup with the default script language, which is Lua. These scripts are all in VBS.
jethskarn2008-10-26 11:01:46
Okay, so I finally came back to play this, and figured i should give mushclient and a system for it a try. Well, I got most of the stuff out that i don't need (learning alias/triggers, health over mana, etc.) but.. the targeting system's a bit messed up. I'm trying to hunt rockeaters while wielding a one handed weapon (i've got two) and the syntax to attack is swing/stab/jab rockeater right hand/left hand. But when i do it through the ff -> att main it comes out as
swing left hand rockeater.. making the syntax broken.
what can i do to fix this?
swing left hand rockeater.. making the syntax broken.
what can i do to fix this?
Unknown2008-10-26 19:02:20
This free system is very, very outdated, and so you may want to try something a bit newer. I've got my own free MUSHclient system now, though it doesn't include some of the auxiliary stuff Ethelon puts into his, like targeting.
Making a targeting system in any client is a simple task, and if you do a search on these forums or the MUSHclient forums, you should have your answer in a few minutes.
Making a targeting system in any client is a simple task, and if you do a search on these forums or the MUSHclient forums, you should have your answer in a few minutes.
Rika2008-10-26 19:47:15
QUOTE(Zarquan @ Oct 27 2008, 08:02 AM) 575805
Making a targeting system in any client is a simple task, and if you do a search on these forums or the MUSHclient forums, you should have your answer in a few minutes.
Lies. If only Mushclient was half as easy to figure out as Cmud.
However! This is a good place to start off.
Anisu2008-10-26 20:57:22
QUOTE(rika @ Oct 26 2008, 08:47 PM) 575815
Lies. If only Mushclient was half as easy to figure out as Cmud.
However! This is a good place to start off.
However! This is a good place to start off.
It would of been great if mushclient had a small database implemented, like a light version of mySQL. The entire having to translate it to a flat variable is annoying. For the rest it is pretty easy in LUA
Unknown2008-10-27 11:35:51
QUOTE(Anisu @ Oct 26 2008, 04:57 PM) 575852
It would of been great if mushclient had a small database implemented, like a light version of mySQL. The entire having to translate it to a flat variable is annoying. For the rest it is pretty easy in LUA
First of all, it's "would've" as in "would have."
Secondly, with Lua you can do pretty much anything you ever dreamed of doing. I present to you LuaSQL for all your external database needs. Really, though, Lua's tables are so fast and flexible that I've got no need for any more than that.
Anisu2008-10-27 15:50:18
QUOTE(Zarquan @ Oct 27 2008, 12:35 PM) 576089
First of all, it's "would've" as in "would have."
Secondly, with Lua you can do pretty much anything you ever dreamed of doing. I present to you LuaSQL for all your external database needs. Really, though, Lua's tables are so fast and flexible that I've got no need for any more than that.
Secondly, with Lua you can do pretty much anything you ever dreamed of doing. I present to you LuaSQL for all your external database needs. Really, though, Lua's tables are so fast and flexible that I've got no need for any more than that.
It is for storing the database even after mushclient closes/crashes. Remember how you commented how I should not use lua variables for targeting (I still do btw, i want my variables redeclared to moo after opening mushclient anyway)
And I know I can interface lua with a mySQL or oracle database. It would have been nicer however if the database itself was provided by mushclient, and with simpler commands. Especially for powerlog scripts that track for over 12 RL days. And yes I know it is entirely possible to store a database in a variable in mush, but it is just to much effort.
Unknown2008-10-27 16:03:39
I serialize Lua tables to MUSHclient variables, and it's really very easy using the script Nick provides as part of the default installation. Look up serialize.lua for the details.
seron2009-05-10 01:30:13
I can't find it...
Unknown2009-05-10 01:42:59
QUOTE (seron @ May 9 2009, 09:30 PM) <{POST_SNAPBACK}>
I can't find it...
Try C:\\Program Files\\MUSHclient\\lua.