ID:150250
 
I am just starting out to program and I was just wondering some good in game GM codes. The script would be much appreciated.
teleport
dissapear
ban
boot
worldsay
seeall

those are some good ones. too bad you didnt ask the right question for what you really wanted!

FIREking
You could download Spuzzum's s_admin02 from the library and study how some GM commands are made then make your own. Or you could just plug Spuz's admin commands right into your game, with a lil tweaking.
-Raven
My latest program includes the following:

Chat verbs:

Announce
Scenario
Tell

Traffic Controll verbs:

Open Game
Close Game
Boot
Mute

Player Controll verbs:

New Object
New Object from game set
Place New Object
New Player Stat
Change Player Stat
Change Location
Allow/Forbid Player Stat Viewing
Allow/Forbid Player Location Viewing
Allow/Forbid Player Inventory Viewing

Dice Rolls:

Coin Flip
D-3 Dice
D-5 Dice
D-6 Dice
D-8 Dice
D-9 Dice
D-10 Dice
D-12 Dice

Other Controlls:

Allow/Forbid Player Viewing
Turn Watcher into Player
Reboot World
Shut Down World



And others. See what you can come up with!
In response to Lord of Water
Lord, why dont you just do something like this?

mob/verb/Roll_Dice(sides as num, num_of_dice as num)
return roll("[num_of_dice]d[sides]")

Alathon