Existing players used to logging in with their character name and moo password must signup for a website account.
- PsycoticCone 2m
- MrRedgrave 57s
- Vanashis 6m
- Hivemind 1m
- Sivartas 26m
- Mindhunter 39s
- JMo 9m All death is certain.
- Fay 2m
- BlackSoul 1s
- Raven 1h I lost myself, in the dark charade.
- Rillem 6m Make it personal.
- zxq 36s Tools: https://ansicolortool.neocities.org
- SmokePotion 10s Right or wrong, I'm getting high.
- Yizhi 34s
- hex 5m
- xXShadowSlayerXx 7m
And 28 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

Codex Learnius

Alright, does anyone know of a good site to teach how to code verbs and such? Or does anyone know of someone who might have some time to teach a few of the basics? Anything would help, hell, if you sent me the code for something like one of the movement verbs or any verb it would help me learn. I have had a bit in another MOO for quite some time, got upraded to programmer now… and I can't do anything but build :P Thanks!
Just to add….

If anyone has ANY kind of example of code, or anything that either has what each command will do, or if its able to be looked at, and eventually figured out... It'll be GREATLY appreciated.

I got a stick of bubble gum. Would that help?
I've heard Sindome is actually held together with it. That and duct tape…*shrugs* If that'd help, give me your address and i'll send it too you.

*snicker*

A half decent starting point would be The Lost Library of MOO - http://hayseed.net/MOO/

It's not that great, but it's a start. After that, hmm, scan existing code on the MOO you've got a progger bit on (@list <object>:<verb>) (@verbs <object>) to get a list of verbs on any given object. The easiest way to learn is to get down and dirty with the code. You might want to take a look at the MOO duck link on the above page. It royally sucks ass in terms of what you end up coding, but the output isn't really the point, the chance to utilize and learn the code is what it's about…

What MOO you a progger on, anyhow?

Here is a sample script (not MOO code):
–-

on jumpup

x=var
x=0
y=var
y=0

--It has been a while since I scripted: this is a test...
if x>y then
 jumpup
else
 if x=y then
   playerdeath
 end if
 if x<y then
   playerfall
  end if
end if

end jumpup

--

I dunno. Thats just a pile of nested if thens. More too it. I hear it helps to know C++

say....what do you use to write C++? As in what language did the makers of the C++ programming language useto make the C++ programming language itself? Binary?!

poop. umm. err....

Luc, just wait till you get lost in a semi complex set of if/thens. I suggest you, for a first project, try to code yahtzee. For two players. With gamboling/betting/money. It will be a lovely exercise in the basics of programmer logic.

C was first written in B which was written in assembler.

The first thing done with C was to write the C compiler in C (it was first written in B obviously).

B was based on BCPL which was developed in the mid 60s at MIT. B was the first system programming language for UNIX, back before it was even called UNIX.

Don't forget the ever popular MOO Programming Manual, and Yduj's Duck tutorial :P  Those are good starting places.