Forum Replies Created
-
AuthorPosts
-
January 10, 2009 at 6:46 pm #184884matinmusicMember
sureeeeee
there issssssssss
they came to my room yesterday as admin
January 7, 2009 at 8:50 pm #181547matinmusicMember@String wrote:
@matinmusic wrote:
I just open a room today for a person
then he came to my room as admin
He add himself as super admin in the listsBut howw
Ask them how they did it.
what a reply
i am saying that they dont like me. they says bad words to me and you tell to go and ask them?
wtf..
December 25, 2008 at 6:13 pm #181552matinmusicMemberhow does it work????????
i double click on it
nothing happen 😥December 21, 2008 at 5:51 am #181570matinmusicMemberBut there is no way for anti bounce anti red in new paltalk
November 22, 2008 at 11:08 pm #187466matinmusicMember@String wrote:
Then run the code. Or, compile the project and run it.
thanks for your help
but how??
i have to go to file? edit? tools? wheresorry and thank you again
November 22, 2008 at 8:17 pm #187468matinmusicMember@String wrote:
Since you keep asking “where” to put the code, I’m gonna guess that you don’t have VB installed.
You need to open the code that you downloaded with VB.I just want to know how they did it?
is this possible to get admin code of a room?Same as in the other thread that you posted this is in ….. no
I have the Visual Basic and i opened on the program
but its kind of text or code
after this what do i have to do
November 22, 2008 at 7:22 pm #185404matinmusicMember@Departure wrote:
there is a way to become admin in any room, beyond my skills of cause but anyone who knows about packets and modifying them can do it. you see when enter a room i have notice that a packet is sent un incrypted by the way, and that is “Admin=0” just changing this to “Admin=1” will give you admin status
can you please explain more???
what do you mean by packets??
admin=1pleaseeeeeeeee explain more
thanks
November 22, 2008 at 6:52 pm #187470matinmusicMemberAnd just another thing
yesterday i was in paltalk, i open a room and after like 15 min 5 people came on my room as admin with an @ and they gave me red dot and they started to say bad words
and after maybe 10 min they even hack my account i could not log in the password was change
I just want to know how they did it?
is this possible to get admin code of a room?Thank you
November 22, 2008 at 6:50 pm #187471matinmusicMemberFor example
i downloaded this file
i guess thie file will let me know a room code
anywayi’ve download the file and it gave me a code like this
Attribute VB_Name = "modPaltalk"
Option Explicit
Public Declare Function GetWindow Lib "user32" (ByVal hWnd As Long, ByVal wCmd As Long) As Long
Public Declare Function GetClassName Lib "user32" Alias "GetClassNameA" (ByVal hWnd As Long, ByVal lpClassName As String, ByVal nMaxCount As Long) As Long
Public Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hWnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
Public Declare Function GetWindowTextLength Lib "user32" Alias "GetWindowTextLengthA" (ByVal hWnd As Long) As Long
Public Declare Function EnumWindows Lib "user32" (ByVal lpEnumFunc As Long, ByVal lParam As Long) As Boolean
Global lngRhWnd As Long ' global to store handle
Global strWindowTitle As String ' global to store title
Global strClassname As String ' global to store class
Private Function EnumWindowsProc(ByVal hWnd As Long, ByVal lParam As Long) As Boolean
Dim sSave As String, Ret As Long
Ret = GetWindowTextLength(hWnd)
sSave = Space(Ret)
GetWindowText hWnd, sSave, Ret + 1
If InStr(sSave, " Group") Then
lngRhWnd = Str$(hWnd)
strClassname = GetClass(lngRhWnd)
strWindowTitle = GetWinTitle(lngRhWnd)
End If
EnumWindowsProc = True
End Function
Public Function GetPalWindow(Optional strClassname As String) As Long
Dim retval As Boolean
retval = EnumWindows(AddressOf EnumWindowsProc, 0)
strClassname = GetClass(lngRhWnd)
GetPalWindow = lngRhWnd
End Function
Private Function GetClass(hWnd As Long)
Dim sSave As String, intLenRet As Integer
sSave = Space(256)
intLenRet = GetClassName(hWnd, sSave, 256)
GetClass = Left$(sSave, intLenRet)
End Function
Private Function GetWinTitle(hWnd As Long) As String
GetWinTitle = GetText(hWnd)
End Function
Private Function GetText(lnghWnd As Long) As String
Dim TheText As String, TL As Long, XT As Long
TL = GetWindowTextLength(lnghWnd)
TheText = String(TL + 1, " ")
XT = GetWindowText(lnghWnd, TheText, TL + 1)
TheText = Left(TheText, TL)
GetText = TheText
End Function
and this code is for paltalk
i want to know where do i have to put this code to workit’s a VB code
do you undresyand?
thank you
-
AuthorPosts