Skip to content

Paltalk 10 Programs Source Codes

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #187082
    Admin
    Administrator

    Here are the Paltalk 10 Programs Source Codes for funtext, admin bot, music bot, ect…. 🙂 the changes that were made for them to work with paltalk were the following.

    In this code line in the module.

    Private Declare Function SendMessageSTRING Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As String) As Long
    

    You need to change SendMessageA to SendMessageW only on that line no where else.

    In the modules too you need to change all the RIchEdit20A to richedit20w

    Last you need to change all the Call RoomSend that don’t use a richtextbox to send the message.
    Example:
    Call RoomSend("Today is nice") to

    RichTextBox1.TextRTF = "Today is nice"
    Call RoomSend(RichTextBox1.TextRTF)

    Otherwise the message in the room will look like ??????????? 😉

    Thanks about it, here the source for the programs.

    #187088
    NaLeT
    Member

    Thanks Loco

    #187087
    Admin
    Administrator

    You welcome 🙂

    #187086
    Zee
    Member

    Thanks a lot Loco

    #187085
    trumhamdoa
    Member

    hi Admin ! program Trivia BOT it is not shown in this photo.
    how to fix ? 🙁

    #187084
    Admin
    Administrator

    Is it in english the answers? umm the questions marks are the text u send to the room?

    #187083
    trumhamdoa
    Member

    @Admin wrote:

    Is it in english the answers? umm the questions marks are the text u send to the room?

    hi Admin !
    all the answers are in English, but they do not appear in English, they show only question marks
    how to fix ?
    thanks so much :jon:

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