Zmud system from scratch

by Kante

Back to Mechanic's Corner.

Kante2008-05-24 12:48:20
All right, so I recently switched from MUSH to Zmud, and I would like to have a curing system. Now, I don't know how to code, but I would like to learn how. And with programming, we all know that learning is by doing.

So then, which language would you suggest I use? Yes, I know I should be using Cmud, but I didn't pay for my copy of Zmud, so I'm sure as hell not going to pay for Cmud, either.
Faymar2008-05-24 13:07:11
If you want to use Zmud so much and you don't like learning how to code, buy Palisade.
Neuf2008-05-24 14:03:59
QUOTE(Kante @ May 24 2008, 01:48 PM) 514992
So then, which language would you suggest I use?


Zmud = zscript... maybe a bit of regex for regex triggers if needed...
Kante2008-05-24 18:22:45
QUOTE(Faymar @ May 24 2008, 09:07 AM) 514993
If you want to use Zmud so much and you don't like learning how to code, buy Palisade.


I'm fine with learning how to code, I just need somewhere to start.
Murphy2008-05-25 10:57:53
just use the zscript, it's easy and logical to pick up. It'll all in the documentation.

EG.

#IF (@stupid = 1) {eat pennyroyal} is a basic if statement. variables have an @ in front of them. Pay attention to the brackets. Trial and error your way through it, that's how I did it back in the day.
Kante2008-05-26 01:14:50
Thanks, Murphy.