ID:161562
 
Hello, im testing out the tabs u have at the top of the dreamseeker screen when i noticed something. i got my skin editing open and i need to know something. how do u make verbs/procs get activiated up there? i know you do something like ".read" but does tht mean i have to make a verb/proc called "read"? then it will do what that proc/verb does? example

mob/verb/read()
usr<<"read's the paper"


would i make that a tab at the top by just putting ".read"

Help will be appreciated,

Agrey
is this what your talking about??
mob
verb
read()
set category = "read"
set desciption = "Read the paper"
usr<<"You read the paper"
world<<"[src] reads the paper"

In response to RanEsu
RanEsu wrote:
is this what your talking about??
> mob
> verb
> read()
> set category = "read"
> set desciption = "Read the paper"
> usr<<"You read the paper"
> world<<"[src] reads the paper"
>

im talking about how im suppose to add that to the tabs on the top of the dream maker, what u just wrote is something totally random.
In response to RanEsu
and plus u did it wrong its not description its desc.
In response to Agrey123
ya i know :/ ina rush nd diddnt think >_<
In response to Agrey123
set category = "w/e here"


makes the tab @ top different names if thats what u were talking about
In response to RanEsu
no thats not what im talking about ,im talking about the tabs at the way top i.e "File""Options"
mob/verb/read()
set hidden = 1
set name = ".read"
src << "You read the paper."


This is how you would set out the verb, and ".read" is what you would enter into the "command" section when creating the button.