Can you make a -hear command like how it is in the jjcp but to be functioning independantly?
A short and sweet one please
Request a map? Follow the rulesHERE
Request templateHERE Please, do not PM me.
On the side note, I'm still playing vampirism speed on malaysia room, occasionally in Garena. Bcuz too lazy to find out where else I can play them.
Bartimaeus wrote:What's the difference between us copying pasting what JJ's CP did and you looking at it yourself?
because I can't copy it and make it work somehow
Request a map? Follow the rulesHERE
Request templateHERE Please, do not PM me.
On the side note, I'm still playing vampirism speed on malaysia room, occasionally in Garena. Bcuz too lazy to find out where else I can play them.
You are asking for help for (or actually asking us to do it for you) trigger.
Make a topic at the triggering section explaining what you want. For ex: A command that will show me what every one is writing...
ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).
(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac:
(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.
(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).
haxorico wrote:You are asking for help for (or actually asking us to do it for you) trigger.
Make a topic at the triggering section explaining what you want. For ex: A command that will show me what every one is writing...
okay
Request a map? Follow the rulesHERE
Request templateHERE Please, do not PM me.
On the side note, I'm still playing vampirism speed on malaysia room, occasionally in Garena. Bcuz too lazy to find out where else I can play them.
ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).
(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac:
(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.
(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).
globals
trigger trgStringCommands=CreateTrigger()
boolean array peopleThatCanHear
endglobals
function getPlayerColorCode takes integer pid returns string
if pid==0 then
return "|cffff0000"
elseif pid==1 then
return "|cff0000ff"
elseif pid==2 then
return "|cff00ffff"
elseif pid==3 then
return "|cff550088"
elseif pid==4 then
return "|cffffff00"
elseif pid==5 then
return "|cffff8800"
elseif pid==6 then
return "|cff00ff00"
elseif pid==7 then
return "|cffee55bb"
elseif pid==8 then
return "|cff999999"
elseif pid==9 then
return "|cff77bbff"
elseif pid==10 then
return "|cff116644"
else
return "|cff552200"
endif
endfunction
function showMessageToPeopleThatCanHear takes nothing returns nothing
local string messageToShow=(getPlayerColorCode(GetPlayerId(GetTriggerPlayer())) + GetPlayerName(GetTriggerPlayer()) + ": " + GetEventPlayerChatString())
local integer index=0
loop
exitwhen index>11
if (peopleThatCanHear[index]) and index!=GetPlayerId(GetTriggerPlayer())then
call DisplayTextToPlayer(Player(index),0,0,messageToShow)
endif
set index=index+1
endloop
set messageToShow=""
endfunction
function stringCommands takes nothing returns nothing
if StringCase(GetEventPlayerChatString(),false)=="-hear"then
set peopleThatCanHear[GetPlayerId(GetTriggerPlayer())]=not(peopleThatCanHear[GetPlayerId(GetTriggerPlayer())])
endif
call showMessageToPeopleThatCanHear()
endfunction
function initStringCommands takes nothing returns nothing
local integer index=0
loop
exitwhen index>11
call TriggerRegisterPlayerChatEvent(trgStringCommands,Player(index),"",false)
set index=index+1
endloop
call TriggerAddAction(trgStringCommands,function stringCommands)
endfunction
function main takes nothing returns nothing
call initStringCommands()
endfunction
Thanks I'll test it now, nicely worked.
Request a map? Follow the rulesHERE
Request templateHERE Please, do not PM me.
On the side note, I'm still playing vampirism speed on malaysia room, occasionally in Garena. Bcuz too lazy to find out where else I can play them.