Skip to content

Paltalk Bot Source Code VB .net 2010

Viewing 15 posts - 1 through 15 (of 77 total)
  • Author
    Posts
  • #186750
    Admin
    Administrator

    Here it is, is a long code lol a little cleaner then my usual codes lol, thanks to auto and string for the great help ๐Ÿ™‚

    Paltalk-BotSCVB2010N1

    #186823

    Very Nice! It is a **LOT** cleaner too. I hope to learn how to bounce people. Thanks for all the effort put into it!

    #186822
    balti27
    Member

    Hi,

    Is there chance for this source code to be updated?
    Thank U.

    #186821
    Highway-Star
    Member

    Very nice, where am I supposed to be looking at getting everything to appear in the room, nothing works on it.

    EDIT! Maybe I should have been a little clearer. Although many things work on it, it does not send to the room although it does appear on the users screen and without the users name on the left hand side as it should. Also, the first thing typed in on the paltalk window by the user enters after the original text, (but appears ok on other computers).

    There are a couple of things I have been tweaking like the player, a couple more buttons added to send the title of the song when a button is pressed rather that it entering when the song starts.
    All this is straight forward although im very new to programming. However, I just can’t figure out how the program relates to paltalk.

    Any pointers on that would be helpful.
    Thanks. ๐Ÿ˜‰

    #186820
    balti27
    Member

    @Highway-Star wrote:

    Very nice, where am I supposed to be looking at getting everything to appear in the room, nothing works on it.

    EDIT! Maybe I should have been a little clearer. Although many things work on it, it does not send to the room although it does appear on the users screen and without the users name on the left hand side as it should. Also, the first thing typed in on the paltalk window by the user enters after the original text, (but appears ok on other computers).

    There are a couple of things I have been tweaking like the player, a couple more buttons added to send the title of the song when a button is pressed rather that it entering when the song starts.
    All this is straight forward although im very new to programming. However, I just can’t figure out how the program relates to paltalk.

    Any pointers on that would be helpful.
    Thanks. ๐Ÿ˜‰

    U need to open mdlPalInfo.vb and in the #Region “Pal Indexes” find :

    Private _SendTextIndex As Integer
    Public ReadOnly Property SendTextIndex() As Integer
    Get
    Return ยด2 ' End Get
    End Property
    
    Private _ReadTextIndex As Integer
    Public ReadOnly Property ReadTextIndex() As Integer
    Get
    Return 3 ' End Get
    End Property
    #186819
    Highway-Star
    Member

    Excellent balti27, it works a treat.
    I think I need to study more on this to see how it works.

    Thanks again

    #186818
    Chike
    Member

    If it’s an integer why there’s a need for any kind of quotation mark?
    Just reaturn number without quotes.

    #186817
    String
    Member

    @Highway-Star wrote:

    I think I need to study more on this to see how it works.

    Clearly.

    #186816
    Highway-Star
    Member

    Obviously, i’m not allowed to voice my opinion, when others can, so ram it!!!

    #186815
    Chike
    Member

    @Highway-Star wrote:

    Obviously, i’m not allowed to voice my opinion, when others can, so ram it!!!

    You can voice your opinion as long it is done in a respectful manner.
    Rudeness will not be tolarated.

    #186814
    DoubleM
    Member

    Hi,

    I am not a VB coder but I can understand it’s sayntax and make some changes. I am trying to understand how to get the text from the paltalk room window/private message and send them. I figure out a way for sending a text via using ChatRTB1 control and SendChat() method as follow:

    ChatRTB1.Text = "my message comes here"
    SendChat()

    I don’t know any other way to send text and write my custom formatting.

    I also want to read line by line but I have not figured that yet. I am using

    Dim hnd As IntPtr = ReadTxtHnd()

    to do so but I still don’t have full controll over it cuz I don’t know how those methods work

    any hints?

    #186813
    String
    Member

    Review your modules. mdlPalInfo.vb for instance. The source shows how the room text is read and sent.

    #186812
    loveonline
    Member

    I have download Your Paltalk Botvbf1.rar and check it with Patalk 10.3 build 490 but it does not work. Make that Paltalk Botvbf1.rar had changed. Can you give me a new source? Thanks Admin. ๐Ÿ˜€

    #186811
    Admin
    Administrator

    Ah is cause you need to do some changes to the indexes in the mdlPalInfo.vb module like this

    Private _SendTextIndex As Integer
    Public ReadOnly Property SendTextIndex() As Integer
    Get
    Return 2
    End Get
    End Property
    
    Private _ReadTextIndex As Integer
    Public ReadOnly Property ReadTextIndex() As Integer
    Get
    Return 3
    End Get
    End Property

    You see the sendtext is now 2 and the readtext is now 3 ๐Ÿ™‚

    #186810

    Thank you Loco! Im just getting started with VB.Net, this is a treat. Thank you very much!
    Also, I notice this is about the only source from you I have in VB 2010 (which opens in my VB 2012). Do you have any updated sources for VB 2010?

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