Hello All.
While I currently use Mudlet, and Tintin++, I really like the HTML5 client.
Since I do development for a living, I'd like to support the game by writing a curing system for the client. Not having one is honestly one of the few things keeping me in Mudlet.
Onto my question,
Is there a list somewhere of what I should be matching to confirm afflictions? Otherwise, I'll have to run off and get myself very afflicted before I can start working on it.
Comments
Archdragon Mizik Corten, Herald of Ruin says, "Man, that was a big axk."
Hellrazor Cain de Soulis, Sartan's Hammer says, "Your [sic] a beast."
-
One of the symptoms of an approaching nervous breakdown is the belief that one's work is terribly important
-
One of the symptoms of an approaching nervous breakdown is the belief that one's work is terribly important
actually Im am probably relative new to Javascript than c++ and lua and other things... it just that I'm looking at
which i assume it to be:
or something like that...
You have a function called coreFunctions which takes the system as an argument, defines three Code objects (onGMCP, onLoad, onBlock), and then adds each of them to the system. That adding is what the system.add(onGMCP).add(onLoad).add(onBlock) is doing. I haven't checked, but I assume that system.add() adds the thing and returns the system, so that chaining the calls together like that is the same as doing system.add(onGMCP); system.add(onLoad);system.add(onBlock).
Unsure why the add() method is used in that piece of code.
In which reference documentation do you see that about the add() method?