Paladin016
05-30-2010, 10:08 AM
-- Register the chat command /duke
addChatCommand("duke");
-- Called when the player first spawns
function onLoaded()
status("Duke Nuke'em's Phrases Are Loaded.");
isLoaded = true;
end
function chatcmd_duke()
rand = math.random(3)
if(rand == 1) then
chatSay("I Have Balls of Steel")
elseif(rand == 2) then
chatSay("Blow it out your ass!")
elseif(rand == 3) then
chatSay("Time to kick ass and chew bubble gum... And i'm all out of gum!")
end
can't get into say chat
addChatCommand("duke");
-- Called when the player first spawns
function onLoaded()
status("Duke Nuke'em's Phrases Are Loaded.");
isLoaded = true;
end
function chatcmd_duke()
rand = math.random(3)
if(rand == 1) then
chatSay("I Have Balls of Steel")
elseif(rand == 2) then
chatSay("Blow it out your ass!")
elseif(rand == 3) then
chatSay("Time to kick ass and chew bubble gum... And i'm all out of gum!")
end
can't get into say chat