User talk:Kibje: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(Welcome!)
 
m (test)
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''Welcome to ''XBMC''!'''
<syntaxhighlight lang="xml">
We hope you will contribute much and well.
<settings>
You will probably want to read the [[Help:Contents|help pages]].
  <category label="Chat">
Again, welcome and have fun! [[User:Ned Scott|Ned Scott]] ([[User talk:Ned Scott|talk]]) 10:48, 22 July 2013 (EDT)
    <setting id="run_chat" type="bool" label="Run IrcChat" default="false" />
    <setting id="nickname" type="text" label="Justin.tv Username" default="" visible="eq(-1,true)" />
    <setting id="password" type="text" label="Justin.tv Password" default="" option="hidden" visible="eq(-2,true)" />
  </category>
</settings>
</syntaxhighlight>
 
Then pass the host, channel and user parameters of your website to the chat.
<source lang=python>
#if stream started:
    xbmc.sleep(3000)
    if addon.getSetting('run_chat') == 'true':
        xbmc.executebuiltin(
            "RunScript(script.ircchat, run_irc=True&nickname=%s&username=%s&password=%s&host=%s&channel=%s)"
            %(addon.getSetting('nickname'), addon.getSetting('nickname'),
              addon.getSetting('password'), name+'.jtvirc.com', name)
            )
</source>

Latest revision as of 12:56, 10 July 2018

<settings>
  <category label="Chat">
    <setting id="run_chat" type="bool" label="Run IrcChat" default="false" />
    <setting id="nickname" type="text" label="Justin.tv Username" default="" visible="eq(-1,true)" />
    <setting id="password" type="text" label="Justin.tv Password" default="" option="hidden" visible="eq(-2,true)" />
  </category>
</settings>

Then pass the host, channel and user parameters of your website to the chat.

#if stream started:
    xbmc.sleep(3000)
    if addon.getSetting('run_chat') == 'true':
        xbmc.executebuiltin(
            "RunScript(script.ircchat, run_irc=True&nickname=%s&username=%s&password=%s&host=%s&channel=%s)"
            %(addon.getSetting('nickname'), addon.getSetting('nickname'),
              addon.getSetting('password'), name+'.jtvirc.com', name)
            )