FISHING CODE in Developer Help
|
|
Code:
mob/verb/Fish() set category = "Commands set src in oview(1) var/obj/Fishing_rod = locate(/obj/Fishing_rod) in usr.contents if(Fishing_rod) usr<<"You start fishing." sleep(30) if (prob(20)) usr<<"You catch a fish!" usr.contents+=new/obj/Fish else usr<<"You don't catch anything." else usr<<"You need a Fishing rod."
|
Problem description:
what is wrong with this code?
|
*I can tell you right now, indention.