ID:270918
 
How would I override the alphebetical value of the verbs in my tabs and list them how I would like? Like instead of it listing: Say, Toggle Chat, Worldsay. It would list: Say, Worldsay, Toggle Chat.
I think you should change it like this example

mob
verb
Say(msg as text)


mob
verb
World-Say(msg as text)

etc....... but i didnt give u the whole code so dont incluse this in your game itll eror just learn the way to present the verbs.
In response to Miran94
I don't see how that would work. That's basically how I have my verbs set.

mob
verb
say(t as text)
set category="Converse"
set name="Speak"
if(!t)return
view(12)<<"<b><font color=black>[usr]</font>: [t]"

mob
verb
worldsay(t as text)
set category="Converse"
set name="Shout"
if("Shout" in usr.toggled)
if(!t)return
if(spam >=2)return
world<<"<b><font color=blue>[usr]</font>: [t]"
else
alert("Chat is turned off.")
In response to Muyoine Guyinne
I dont think there is a way to order them differently.
In response to Dragon_fire6653
yeah.. it would be fun if they had it in BYOND v4.. if it ever comes out >.>


//False code
mob/verb/Hi()
set pos=2
src<<"..."
mob/verb/Nou()
set pos=1
src<<"12"
mob/verb/Z()
set pos=0
src<<"meSj"
mob/verb/A()
set pos=0//default
src<<"mej"

That would be nice.. Nou, Hi, A, Z

- GhostAnime
In response to GhostAnime
GhostAnime wrote:
yeah.. it would be fun if they had it in BYOND v4.. if it ever comes out >.>


//False code
> mob/verb/Hi()
> set pos=2
> src<<"..."
> mob/verb/Nou()
> set pos=1
> src<<"12"
> mob/verb/Z()
> set pos=0
> src<<"meSj"
> mob/verb/A()
> set pos=0//default
> src<<"mej"

That would be nice.. Nou, Hi, A, Z

- GhostAnime


Yep.I cant wait till' 4.0 although it wont be around for awhile, most likey.