Here are the Paltalk 10 Programs Source Codes for funtext, admin bot, music bot, ect....
In this code line in the module.
- Code: Select all
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:
- Code: Select all
Call RoomSend("Today is nice")
- Code: Select all
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.






