Skip to content
Home > Paltalk > Does anyone know how to send links to pal rooms

Does anyone know how to send links to pal rooms

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #184487
    Admin
    Administrator

    This is something i really need, is there anyways we can send links to rooms, that are block, like all my links are block.

    but i remember there was a way to send like http://Admin.%2com dont reallly remeber I think i saw it in icedesigns old forums 🙂

    this is something i really need lol to promote the site 🙂

    #184495
    ice_531
    Member

    heh. Yeah theres certain ways to send blocked links, our site got blocked alot lol and we didnt want to make redirects to use.

    well %20 in url does a space i believe… i forget the key that does absolutely nothing lolol ..its %sumthin

    try looking at google? ill ask crash if he remembers though

    #184494
    Project SP
    Member

    or u can use this example……

    “/” = %2F
    “.” = %2E

    http://Admin%2Ecom%2F

    AND LOCO UR SITE WILL BE REVIEVED TO ANOTHER USER…….
    HAVE FUN……. 🙂

    #184493
    Admin
    Administrator

    lol yessssss let me go flood paltalk

    thanks a lot 😆

    #184492
    UDG Clan
    Member

    lol thanks god 2 site of mines still isnt blocked and i go flood on paltalk and lol dont know why they blcoked myns

    #184491
    H@CkY
    Member

    I think they blocked yours because u was advertising too much 😮

    #184490
    UDG Clan
    Member

    i do adver… too much but they dont block me

    #184489
    Project SP
    Member

    ok loco…. u can also make the link in vb…..
    here u go….. i know therz alots of ways we can do that
    but. we dont all those codez…. we just simply use the replace
    function…… for two characters that needs to be… changed to getpass
    the paltalk site filter………. in this case it is “.” & “/”…..have fun

    Private Sub Command1_Click() ' This Will Change Back the URL To Its Substitute link.....
    Dim Temp As String ' Just For Temporary Resultz
    Temp = Replace(Text1.Text, ".", "%2E")
    Temp = Replace(Temp, "/", "%2F")
    Text1.Text = Temp
    End Sub



    Private Sub Command2_Click() ' This Will Change Back the URL To Its Original link
    Dim Temp As String ' Just For Temporary Resultz
    Temp = Replace(Text1.Text, "%2E", ".")
    Temp = Replace(Temp, "%2F", "/")
    Text1.Text = Temp
    End Sub
    #184488
    Admin
    Administrator

    lol niceeeeeeee, now i dont have to be writing all over jeje thanks man u a genius 🙂

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.