RevScript TalkAction !Commands

Alex

Miembro del equipo
Webdesigner
LV
58
 
Awards
38
Hola a todos,

Este script sirve para mostrar todos los comandos de un servidor, obviamente, previamente lo modificarán con sus TalkActions,
Script por Karin 420

Se coloca en data/scripts/TalkActions/Players

PHP:
local commands = TalkAction("!comands")
 
function commands.onSay(player, words, param)
    if player then
        local text = 'Comandos disponiveis: \n\n'
        text = text .. '!aol \n'
        text = text .. '!bless \n'
        text = text .. '!buyhouse \n'
        text = text .. '!leavehouse \n'
        text = text .. '!online \n'
        text = text .. '!sellhouse \n'
        text = text .. '!serverinfo \n'
        text = text .. '!tibiatimer \n\n'
        player:showTextDialog(1952, text)
    end
    return false
end
 
commands:register()
 
Arriba