ID:178280
 
How would I make like, ('beep.wav') be heard by someone in my view?
Branks wrote:
How would I make like, ('beep.wav') be heard by someone in my view?

view()<<sound('beep.wav')
In response to Thief Jack
How would I make a verb that has a pop up box, and it says "How many Laps?". Then I choose whatever number, and it will announce it to the world like "Race for 3 laps!!"
In response to Branks
Branks wrote:
How would I make a verb that has a pop up box, and it says "How many Laps?". Then I choose whatever number, and it will announce it to the world like "Race for 3 laps!!"

mob/verb/Lap(var/T as num)
world << "Race for [T] laps!"


- Malver
In response to Branks
mob
verb
Start_Race(N as num)
world << "[usr] Starts A Race With [N] Laps!"

Try That!







Shun Di, Out
In response to Shun Di
Shun Di wrote:
mob
verb
Start_Race(N as num)
world << "[usr] Starts A Race With [N] Laps!"

Try That!







Shun Di, Out

That should be src, not usr...

- Malver
In response to Shun Di
thanks, it worked, hmm I guess at first I had certain doubts about you. you got my respect now :-D, same for Malver. One more thing, I cannot choose a person to give these verbs to, can you help me on this? it just gives me the verbs.....

verb
Hire_RaceAdmin(mob/M in world)
set category = "Admin"
usr<<"[usr] I chose you to be the RaceAdmin, please do not dis-obey the rules, have fun, and let it all go!"
usr.verbs+=/mob/RaceAdmin/verb/TrackOpen
usr.verbs+=/mob/RaceAdmin/verb/TrackClosed
usr.verbs+=/mob/RaceAdmin/verb/StartEngines
usr.verbs+=/mob/RaceAdmin/verb/Ready321Go
usr.verbs+=/mob/RaceAdmin/verb/Winner
usr.verbs+=/mob/RaceAdmin/verb/Lap
In response to Branks
Simply replace all the "usr"'s with M.

-Rcet
In response to Malver
Both src and usr work, it dosent matter





Shun Di, Out