mob/verb |
Problem description:
not to sure but i think i almost got it to work anyone know how i'd do the proc on this i tried it like the F1 guide said but no luck :/
Code:
Problem description: not to sure but i think i almost got it to work anyone know how i'd do the proc on this i tried it like the F1 guide said but no luck :/ | ||
#1 Jun 6 2012, 2:46 pm
Best response
|
||
First of all, its a verb. You forgot to add the () at the end of Reset to clarify that. Also, it looks like you have "set category" indented too much and you have not clarified what/whom "M" is. I believe you are looking for something like this:
| ||
The Motto wrote:
I Believe it's suppose to be Ya, your right. Got ahead of myself and made a mistake lol. | ||
Phits wrote:
First of all, its a verb. You forgot to add the () at the end of Reset to clarify that. Also, it looks like you have "set category" indented too much and you have not clarified what/whom "M" is. I believe you are looking for something like this: If you intend to use this on yourself, M = usr is redundant. | ||
Phits wrote:
First of all, its a verb. You forgot to add the () at the end of Reset to clarify that. Also, it looks like you have "set category" indented too much and you have not clarified what/whom "M" is. I believe you are looking for something like this: sorry i tried it but it seems not to work :/ | ||
#7 Jun 10 2012, 12:38 pm
|
||
| ||
#9 Jun 10 2012, 1:12 pm
|
|
Shes doing it on her own character therefore it doesn't need mob/M
| |
#10 Jun 10 2012, 1:37 pm
|
||||
Yeah, seriously just do everything to the usr and you're good to go.
Some other notes. 1.
is the same as
The easiest fix to your code is
| ||||
Lugia319 wrote:
I think you meant to do usr, not src. | ||
#12 Jun 10 2012, 2:21 pm
|
|
In this case, usr and src are the same. Because the verb is not displayed to others (no set src in...), the only person who can call the verb is the person who has it, hence why usr == src.
( usr = person who ultimately called the verb src = the /mob which contains the verb ) | |
#13 Jun 10 2012, 2:27 pm
|
|
Yeah, that's true, in this case. However, there's a good chance that someone will forget that src is the container of the verb and try using it, then wonders in here asking why it doesn't work; whereas if they use usr it is less likely to happen.
| |