AhFox

Forum Replies Created

Viewing 12 posts - 316 through 327 (of 327 total)
  • Author
    Posts
  • in reply to: Paltalk Help Lobby BOMBED #180268
    AhFox
    Member

    hahahha … where is the part … you got bounced / banned ??? I missed that part … after you bombed them

    that would be funny though ….

    in reply to: This is my program :) It call AutoTalker #180324
    AhFox
    Member

    Newest version released was v1.3 I beleived ….

    Great software …

    Auto Greet works with all version of Paltalk.
    Auto Posting ….

    With nicks …..

    You can get the lite version at

    in reply to: syslistview32. #189467
    AhFox
    Member

    What you did is really COOL LIMIT …

    Departure is working is ass off … to do something like you 🙂

    getting total count is easy … 1 line of API … but the nicklist is complicated !!!

    in reply to: syslistview32. #189470
    AhFox
    Member

    yes … you’re right LIMIT

    Using API to get systemlist index position should returns user nick … that is much faster than get “view uid” … Great tip ….

    But I don’t know how to do that part yet … 🙂 still trying though … Systemview is kinda complicated … you have to go into the memory and process stuff … i’m getting headache when I think about it 🙁

    in reply to: syslistview32. #189472
    AhFox
    Member

    Welll … this is great information … but I have a different method to get all users list.

    Since paltalk supports sendKey …

    So if you want to get the nickname of the first user.

    Do it with the keyboard.

    go to system list view …. click on any nickname …

    hit “HOME” > first user position

    hit “END” > last user position

    (IMPLEMENT into Visual Basic language 🙂 ) simple huh ?

    SendKey {“HOME”} ‘This will go to the first person in the list

    SendKey {“END”} the last person in the list.

    Paltalk has a bug that it doesn’t jump on “@” when you hit “@” on your keyboard.
    Well I reported it, hopefully they will fixed it soon.

    Well then you ask me how do you get a user nick ??
    Well that’s easy … as you may know … Paltalk allows you to get “view uid” then you can copy their nick ….

    This will help you to find a user and search for the position of the user.

    Well the source you gave is good … but I think if one doesn’t know what he/she is doing … can kill the whole System.

    * Geting user list is one thing … but finding a user position is another thing … as I mention the method that I stated above will give you the nick and the postion of the user at the same time, this will help you to do the auto bounce and mute.

    Such as !mute
    or !kick

    I’ll try to figure it out … how to implement with the demo RAR above that you gave out. I’ll share it with ya …

    in reply to: syslistview32. #189474
    AhFox
    Member

    Link download isn’t working !!!

    in reply to: syslistview32. #189484
    AhFox
    Member

    Hehehehe here is the CODE

    Dim lParent As Long
    Dim lChild(1 To 5) As Long
    Dim reason As String

    ‘Get Parent Window
    lParent = FindWindow(“My Window Class”, “Title here … ROOM’s name”)
    ‘Get Child Window(s)
    lChild(1) = FindWindowEx(lParent, 0, “WTL_SplitterWindow”, “”)
    lChild(2) = FindWindowEx(lChild(1), 0, “WTL_SplitterWindow”, “”)
    lChild(3) = FindWindowEx(lChild(2), 0, “WTL_SplitterWindow”, “”)
    lChild(4) = FindWindowEx(lChild(3), 0, “ATL:004FE7B8”, “”)
    lChild(5) = FindWindowEx(lChild(4), 0, “SysListView32”, “”)

    in reply to: Please Give my Blue nick #184199
    AhFox
    Member

    Blue nick found:

    Username: Paltalk
    Password: iloveporn

    Please send me your credit card, i’ll send you a blue nick!

    in reply to: Music n Video Bot #180287
    AhFox
    Member

    Looks GREAT ….

    very nice …

    in reply to: inSpeak GetText and SendText? #184190
    AhFox
    Member

    Congrats 🙂 Departure, When you found out … don’t forget to share it with me. Thanks bro !!

    Well I’m not into inSpeak yet … their sound quality is kidda low … so I don’t like it much … but here is some hints … I thought I may be helpful to you

    ‘ get HWND text chat

    Function GetMyWindow() as long

    ‘Variables
    Dim lParent as long
    Dim lChild(1 to 8) as long

    ‘Get Parent Window
    lParent = FindWindow(“TChatRoom”, “inSpeak Help Lobby – Help Voice Room”)
    ‘Get Child Window(s)
    lChild(1) = FindWindowEx(lParent, 0, “TSPanel”, “”)
    lChild(2) = FindWindowEx(lChild(1), 0, “TSPanel”, “”)
    lChild(3) = FindWindowEx(lChild(2), 0, “TSPanel”, “”)
    lChild(4) = FindWindowEx(lChild(3), 0, “TSPanel”, “”)
    lChild(5) = FindWindowEx(lChild(4), 0, “TSPanel”, “”)
    lChild(6) = FindWindowEx(lChild(5), 0, “TSPanel”, “”)
    lChild(7) = FindWindowEx(lChild(6), 0, “THTMLViewer”, “”)
    lChild(8) = FindWindowEx(lChild(7), 0, “TPaintPanel”, “”)

    GetMyWindow = lChild(8)

    End Function
    ‘ This function will return the handle to insPeak text chat

    after that you need to do the API thinggy to get the TEXT … 🙂
    If this hint is not enough tell me i’ll put more next time 🙂 …

    in reply to: Paltalk Vs inSpeak #184227
    AhFox
    Member

    Wow nice …

    greet look like new PALTALK 🙂 …

    got error when trying to go to inspeak’s website, something wrong with the website or something.

    AhFox
    Member

    why not .. check if handle 0
    IF handle = 0 then we performace search FindWindow
    Otherwise … we do not performace anything

    Wen can send message at the end …

    ‘ Examples
    handle = getParentWindow(title here);
    If (handle=0) //b90
    //check for other build
    End If
    sendMessageToChatroom(handle, message)

Viewing 12 posts - 316 through 327 (of 327 total)