How do you get a Code to MUTE a plyer(Stop the Player from Chatting)If you need to know my Say Verbs these are it://OCC
I need it in a GM VERB!
mob
verb/OOC(T as text)
set desc = "Do a OCC!"
set category = "Communication"
world << "\icon[usr]\red \<[src.name]> [T]"
//World Talk
mob
verb/WorldTalk(T as text)
set desc = "Do a World Talk!"
set category = "Communication"
world << "\icon[usr]**\white \<[src.name]> ** [T]*"
If you know how to Mute please tell me.Thanks!
ID:266367
Jan 31 2002, 2:02 pm (Edited on Jan 31 2002, 2:47 pm)
|
|
In response to Rcet
|
|
Rcet wrote:
You need to make a var. > mob Then in the say verb, make it check it. > mob -Rcet Can you make that into a GM Verb plz? |
In response to SSJ4_Gohan_Majin
|
|
SSJ4_Gohan_Majin wrote:
Can you make that into a GM Verb plz? that is a pointless Question to ask, but since you said plz mob\GM Now if you want it so that a GM can "Mute" people, then you would need this LITTLE code: mob You'll have to figure out on your own how to un-mute them (it shouldnt be that hard) |
In response to Pillsverry
|
|
I'm in a kinda giving mood, so here:
mob |
In response to Pillsverry
|
|
Read your code over, I found a few errors.
|
In response to Pillsverry
|
|
Errors on this Code:
GM_Mute(mob/m in world) set category = "GM" set desc = "() Stop a Mob from Talking in the World" World_Talk(m as text) if(usr.muted == 1) M.muted = 1 usr << "You cant talk! You are muted!" else world << "[usr]: [m]" Whats the problem? |
In response to SSJ4_Gohan_Majin
|
|
SSJ4_Gohan_Majin wrote:
Errors on this Code: You have to tell us the errors you get, and that code will cause errors because it's indented really badly. |
In response to Nadrew
|
|
Nadrew wrote:
SSJ4_Gohan_Majin wrote: Error:if:Invailed proc defenition Error:M.Mute Invailed proc defenition Error:= Invailed proc defenition Error:<< Invailed proc defenition Error:else Invailed proc defenition Were Wolf Human Quest 5 errors,0 warnings(Dubble click on an error to jump it) |
In response to SSJ4_Gohan_Majin
|
|
BIG PROBLEMS when i fixed the code cause ur code was indented badly it made 72 errors:
|
In response to SSJ4_Gohan_Majin
|
|
SSJ4_Gohan_Majin wrote:
BIG PROBLEMS when i fixed the code cause ur code was indented badly it made 72 errors:
Is this what you are looking for? |
In response to SSJ4_Gohan_Majin
|
|
SSJ4_Gohan_Majin wrote:
BIG PROBLEMS when i fixed the code cause ur code was indented badly it made 72 errors:
|
In response to Pillsverry
|
|
Try this:
mob That should work. -Kappa the Imp |
Then in the say verb, make it check it.
-Rcet