Skip to content

Paltalk WinAmp Bot

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #178938
    Admin
    Administrator

    Aigh peeps I being working on thsi new proggie, so you can adminsiter winamp from paltalk rooms, its cool so i wanna you guys to check it out first.

    here is winamp in case you dont have it

    and you need to enable music playing on paltalk room, check this post

    aigh for help click on the help menu of the program all the commands are there.

    any bugs or suggestions please post them here

    #178945
    Admin
    Administrator

    Aigh here a cool addon for you room admins, its call Paltalk Winamp Bot Lazy Admin. just click on the button to send the command so you dont have to type them 🙂

    To use it just click on conenct to connect to the room thats it 🙂 then click on the buttons to send the command 🙂

    #178944

    I didn’t test your prog but do U know we can add a song path to winamp playlist or delete with api, that means we dont need to load all songs into winamp one shot 😆

    #178943
    method
    Member

    loco does this allow users in the room to make request and tell them when their songs gona play and people type and post commands to get info about the song and their request? i have seen some stuff like that in some room so i wonder if this one can do that too?

    #178942
    Admin
    Administrator

    Nano, how you do that, and is it posible to get all the song to ur own list too 🙂 I just use a bas I found in planet source code, but the list thing oounds interesting 🙂

    method i was thinking bout that, I give it a try i just dont want to make a big code like my music bot lol cause of the cpu usage. 😯

    #178941

    I use vbnet here is the function to add a song tho winamp playlist

    Public Function PLAddTrack(ByVal WAFile As String) As Boolean
    ‘ WAFile is the entire path and filename of the file to add
    Dim OpenStatus As Integer

    If System.IO.File.Exists(WAFile) = False Then Return False
    Try
    OpenStatus = Shell(WAPath & ” /class=” & Chr(34) & WAClassName & Chr(34) & ” /ADD ” & Chr(34) & WAFile & Chr(34), AppWinStyle.MinimizedNoFocus)
    If OpenStatus 0 Then
    Return True
    Else
    Return False
    End If
    Catch ex As Exception
    Return False
    End Try
    End Function

    variables: WAPath is the full path of your installation winamp like C:programm fileswinamp.exe

    WAFile is your song with full path like c:mysong.mp3
    WAClassName is the window class of winamp

    and to clear play list use this

    SendMessage(WAHandle, 1024, 0, 101)

    #178940

    I dont use winamp playlist. I load all my songs from a file to listbox and each time I want play a song I have just send my full path from listbox to winamp.

    note: clear winamp playlist before send a new song to it other else you will accumulate the songs in winamp playlist

    #178939
    Admin
    Administrator

    Aigh i check that out, I was going to make this myu main music bot But I think I finnally fix the other music bot cpu usage problem, 🙂 will see

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.