• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

!somecommand

kaszanalubizryc

New Member
Joined
Sep 10, 2015
Messages
148
Reaction score
1
hey, can someone create for me command:
!test 1


and in talkacion get !test "numbers"
if 1 then
//to-do
end
if 2 then
//to-do
end
 
Code:
function onSay(player, words, param)
    if param == "1" then
        print("one")
    end
    if param == "2" then
        print("two")
    end  
    return false
end
 
Last edited:
Back
Top