Jump to content

Translations:Konversation/Scripts/Ghosttrick/13/en: Difference between revisions

From KDE UserBase Wiki
FuzzyBot (talk | contribs)
Importing a new version from external source
 
(No difference)

Latest revision as of 17:30, 3 June 2016

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Konversation/Scripts/Ghosttrick)
# if your current assigned nick isn't the same as your desired one, ghost yourself and change nick
if [ "$NICK" != "$nick" ]
then
  qdbus org.kde.konversation /irc raw $CONNECTION "PRIVMSG nickserv :GHOST $nick $pass"
  qdbus org.kde.konversation /irc raw $CONNECTION "NICK $nick"
fi
  1. if your current assigned nick isn't the same as your desired one, ghost yourself and change nick

if [ "$NICK" != "$nick" ] then

 qdbus org.kde.konversation /irc raw $CONNECTION "PRIVMSG nickserv :GHOST $nick $pass"
 qdbus org.kde.konversation /irc raw $CONNECTION "NICK $nick"

fi