ID:262691
 
Code:
        hud4
icon='Hud.dmi'
icon_state="WSay"
screen_loc = "10,1"
Click()
var/msg = input("What Do You Want To Say To The World.") as text |null
if(usr.mute==1||!msg) return
else
world << "<font color=blue>-=[usr.Clantag]-[ClanRank]=-<font color=white>-=[usr]=-:[msg]"








hud5
icon='Hud.dmi'
icon_state="Say"
screen_loc="8,1"
Click()
var/msg2 = input("What Do You Want To Say.") as text |null
if(usr.mute==1||!msg) return
else
view() << "<font color=blue>-=[usr.Clantag]-[ClanRank]=-<font color=white>-=[usr]=-:[msg2]"


Problem description:
wsay is acting the same as say and say is say LoL
can soem 1 help me plz

You need to indent Click() and everthing for that Click() statement.

like this.
        hud4
icon='Hud.dmi'
icon_state="WSay"
screen_loc = "10,1"
Click()
var/msg = input("What Do You Want To Say To The World.") as text |null
if(usr.mute==1||!msg) return
else
world << "<font color=blue>-=[usr.Clantag]-[ClanRank]=-<font color=white>-=[usr]=-:[msg]"
In response to Crzylme
thanks