- This topic has 7 replies, 3 voices, and was last updated 18 years ago by Admin.
-
AuthorPosts
-
June 21, 2006 at 3:36 pm #178938AdminAdministrator
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
June 21, 2006 at 11:00 pm #178945AdminAdministratorAigh 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 🙂
June 22, 2006 at 7:17 am #178944BattleStar-GalacticaMemberI 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 😆
June 22, 2006 at 10:06 am #178943methodMemberloco 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?
June 22, 2006 at 11:44 am #178942AdminAdministratorNano, 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. 😯
June 24, 2006 at 7:06 am #178941BattleStar-GalacticaMemberI 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 IntegerIf 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 Functionvariables: 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 winampand to clear play list use this
SendMessage(WAHandle, 1024, 0, 101)
June 24, 2006 at 7:35 am #178940BattleStar-GalacticaMemberI 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
June 24, 2006 at 12:56 pm #178939AdminAdministratorAigh 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
-
AuthorPosts
- You must be logged in to reply to this topic.