- Initiateur de la discussion
T
Tristanbzh37
Geek suprême
- Messages
- 103
- Score réaction
- 3
- Points
- 110
Bonjour je n'arrive pas à créer un petit addon pour mon serveur ! Ce serait un addon avec des commandes personnaliser.
Problème :
les commandes ne s'exécutent pas dans le chat , et ne s'affiche pas !
Problématique ça...
Je remercie toutes personnes prenant le temps de répondre et qui essaye de m'aider ! Cordialement Tristan !
Problème :
les commandes ne s'exécutent pas dans le chat , et ne s'affiche pas !
Problématique ça...
Je remercie toutes personnes prenant le temps de répondre et qui essaye de m'aider ! Cordialement Tristan !
hook.Add("PlayerSay", "infoscommand", function(pSender, strText, bTeamChat)
if strText:sub(1, 5) == "!Infos" then
pSender:ChatPrint( " (Infos) Pour le discord faite !discord " ,
" (Infos) Pour le workshop faite !workshop " ,
" (Infos) Pour les règles du serveur faite !règles " ,
" (Infos) Pour d'autres informations faite !staff " )
return false
end
end)
hook.Add( "PlayerSay", "discord", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!discord" ) then
return " Le discord est dans le menu 'échape' ou aussi ici = https://discord.gg/YRHGgrj "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!workshop" ) then
return " Le workshop est dans le menu 'échape' ou aussi ici = http://steamcommunity.com/sharedfiles/filedetails/?id=1254990563 "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!règles" ) then
return " Les règles sont ici = (à venir) "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!staff" ) then
return " /// J'aimerai un renseignement ! "
end
end)
if strText:sub(1, 5) == "!Infos" then
pSender:ChatPrint( " (Infos) Pour le discord faite !discord " ,
" (Infos) Pour le workshop faite !workshop " ,
" (Infos) Pour les règles du serveur faite !règles " ,
" (Infos) Pour d'autres informations faite !staff " )
return false
end
end)
hook.Add( "PlayerSay", "discord", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!discord" ) then
return " Le discord est dans le menu 'échape' ou aussi ici = https://discord.gg/YRHGgrj "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!workshop" ) then
return " Le workshop est dans le menu 'échape' ou aussi ici = http://steamcommunity.com/sharedfiles/filedetails/?id=1254990563 "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!règles" ) then
return " Les règles sont ici = (à venir) "
end
end)
hook.Add( "PlayerSay", "CommandIdent", function ( ply, text, team )
if( string.sub( text, 1, 4 ) == "!staff" ) then
return " /// J'aimerai un renseignement ! "
end
end)