ID:162814
 
i just have a problem to make health,stranth,andlv cheat code hack
~_~i've been trying for 1month

Make a hidden verb and change its name to something that sounds cheat-code ish.
mob/verb/healthhack()
set hidden=1
set name="irtehimmortal"
HP=9999999999999999 //etc.
You would want something like this:
mob
verb
Code()
var/c=input("Whats the code") as num
if(c=="137213")
src<<"You got the health code! Congratz!"
src.health+=999999999999

Code has not been tested so I'm not too sure about the input part.
In response to DisturbedSixx
Take the quotes off the number
if(c=="137213")
to
if(c==137213)
I had codes for early builds of my game. Called States. They would change yoru icon state to whatever you typed.. unless it was a code!!
var/I = input(usr,"Change state to?") as text
switch(I)
if("CHEET")
usr.hp=9001
return
usr.icon_state=I