Skip to content

Paltalk Admin Bot 9.9

Viewing 15 posts - 16 through 30 (of 40 total)
  • Author
    Posts
  • #175646
    Admin
    Administrator

    Aight lets try this version, the only reason i think its doing multiple bounce is because it see the swear word again, so chek this one when the person get bounce the bot will send a message to the room saying it was bounce 8) I think this might solve that, but try it and come back to see if it work.

    #175645
    Mbirmbilis
    Member

    Now i am verry happy! 😀

    It works 100%! After the bounce i stay in paltalk! :mrgreen:
    Problem solved! 😉

    Thank you Admin! 🙂

    #175644
    Admin
    Administrator

    🙂 Great thanks for repurting the bug 😉

    #175643
    Mbirmbilis
    Member

    I found something out, and i think i got to tell you this Admin!

    The bounce work 100% right now!
    This ppl have found out how they can swear and go out without be bounced by the BOT!

    So they write,
    something, swear something
    The BOT does not read the swear becouse of the ,

    If i write in the words
    , swear
    the BOT does work as long i have it open!

    From the momment i close and open it again the swear i wrote
    , swear becomes
    empty line
    swear

    This is the reason why ppl who did not swear are bounced from the room!
    And i am outside again!

    I must now everytime i open the bot write he swears again with the , and not save them!

    This are my news 🙂 and hope they are useful!
    Greetings Mbirmbilis!

    #175642
    Admin
    Administrator

    Lol, man this bad guys learn trick fast ehehhe, aigh I will see if I can do something, I cant think of any yet ut will see 🙂

    #175641
    Mbirmbilis
    Member

    Hello again!

    I have an idea how the prob could be solved!

    So if the BotUser wants to insert more then one word to the swearwords he can write,
    for example
    swear1, swear2, swear3, swear4, ……
    after he close the Bot and open it again this becomes,
    swear1
    swear2
    swear3
    swear4
    ……. 😉

    The swearbot read the , as new line because it so programmed and may be this is the reason of not working as it should!

    Is it posible to disable the multible insert of worts and tell the Bot to read all words in the text sented without give atention to kommas?
    If this is posible i think they will have no more change!

    I hope i’m not bugging You Admin!
    Greet Mbirmbilis!

    #175640
    autopilot
    Member

    loco this is a fix to your code that will save the “,” in the phrase rather then breaking the phrase on “,”(coma). basically, your original save treats the coma as a separator. if you wrap the phrase in quotes, then the coma is treated as part of the string.

    Private Sub Command32_Click()
    Dim X As Integer
    On Error Resume Next
    'saves the keywords listbox to a file.
    Open App.Path & "words.txt" For Output As #1
    For X = 0 To List5.ListCount - 1
    ' Old way
    ' Print #1, List5.List(X)
    '
    ' Problem: it treats coma as field separator
    ' Solution: wrap the phrase in quotes
    '
    ' Dim sTemp As String
    ' sTemp = """" & List5.List(X) & """"
    ' Print #1, sTemp
    '
    ' We do not have to create a temp string
    ' instead just add the quotes and the phrase
    ' in the same step.
    
    Print #1, """" & List5.List(X) & """"
    
    Next X
    Close #1
    End Sub

     

    #175639
    Admin
    Administrator

    Mbirmbilis lol auto made it easier lol I was wondering what how to do it, but chek this new version.

    And Auto what can I say man you always come through thanks a lot 🙂

    #175638
    autopilot
    Member

    i was trying to look at the code that checks for swearing. the InStr should make it so you dont need to store the phrase as a phrase.

    if a user posts:

    swear1, swear2, swear3, swear4, ……

    and the list has:

    swear1
    swear2
    swear3
    swear4
    …….

    the InStr should see that “swear1, swear2, swear3, swear4, ……” contains “swear1” on the first check and act on it. it does not make sense that using a coma will prevent it from catching the word. but if you are truely wanting to catch phrases, then they do need to be saved with the quotes to treat special characters correctly.

    one thing i would do in the phrase check is force everything to lower case so the check would look like:

    If InStr(LCase$(Text6.Text), LCase$(List5.List(N))) Then
    #175637
    Mbirmbilis
    Member

    OK this works with the coma!

    Now i have a new challenge for you Admin and autopilot!

    This ppl post the text in room like this
    something,somethingswearsomethingswearsomething

    so to catch them, there mast be in the words.txt something like this

    *,*swear*swear

    The * i use here is like search in explorer and stands for all words before exe or bat or….files
    like *.exe, *.bat etc!

    So i nead something like this to write one line for this swear, because something,something changes from time to time and the BOT does not catch them the same happens to the swear in the end of the text!

    The swear is always the same. The only changes are in something!
    So if this is posible i need only one line in the words.txt to catch them all! 😉

    As i told you in my last post i hope i am not bugging You!
    And i think that most ppl do not use all features of this prog! I say this becouse i have found more things that do not work as they should! But i think it is better to go step by step!

    Greet Mbirmbilis

    #175636
    String
    Member

    @Mbirmbilis wrote:

    This ppl post the text in room like this
    something,somethingswearsomethingswearsomething

    Unless loco hasn’t implemented it yet, the InStr AutoPilot mentioned will find the string(word) where ever it may be. Whether at the beginning, the end or anywhere between. And, it would only need to find 1 instance of a targeted word.

    I don’t understand the “comma” problem.

    #175635
    autopilot
    Member

    loco was using InStr before i said any thing about it, but he is not forcing to upper or lower case. What that means is i have “sob” in the list, here are some posts it would catch:

    my wife is sobbing!
    I have been sober for 2 weeks
    you are an sob

    Things it would miss:

    my wife is Sobbing!
    I have been sOber for 2 weeks
    you are an soB

    My guess is that the issue is with case and/or spellings and not the words run together.

    #175634
    Admin
    Administrator

    ah, lol man you got some bad peeps bugging ya room, I gonna put the lcase that auto shows tomorrow for ya 🙂

    #175633
    Mbirmbilis
    Member

    I think i was to fast happy!

    Now the bounce does not work!

    The messege that the user was swearing an bounced is seen!
    But the user stay in room no bounce is done!

    I do not know what to say!

    The BOT does see tha swear starts to bounce but does not finish this!
    UserX was bounce swearing in the room
    here it stops!!!!!!!!

    Admin if it is not to much work and programming, i would say to take the delay of bounce away in and make the bounce working! But only if it is not to much work!

    May be this would be enough! If it does not work i will tell You this and i will also stop posting becouse i see no ending of this! I think they are programmers too and tey find other ways to do what they do!

    Greets Mbirmbilis!

    P.S. I tried the standart swear s…s from the BOT in the original BOT, i was bounced from paltalk! I tried it in and the bounce was not finished! Nothing diferent!

    #175632
    Admin
    Administrator

    Umm, Aigh :), you delay in which part of the bot, the swearbot or regular bouncer 🙄

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