- This topic has 8 replies, 5 voices, and was last updated 19 years ago by ice_531.
-
AuthorPosts
-
January 3, 2005 at 3:02 pm #184487AdminAdministrator
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 🙂
January 3, 2005 at 5:45 pm #184495ice_531Memberheh. 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
January 3, 2005 at 5:57 pm #184494Project SPMemberor u can use this example……
“/” = %2F
“.” = %2EAND LOCO UR SITE WILL BE REVIEVED TO ANOTHER USER…….
HAVE FUN……. 🙂January 3, 2005 at 6:03 pm #184493AdminAdministratorlol yessssss let me go flood paltalk
thanks a lot 😆
January 3, 2005 at 11:00 pm #184492UDG ClanMemberlol thanks god 2 site of mines still isnt blocked and i go flood on paltalk and lol dont know why they blcoked myns
January 3, 2005 at 11:47 pm #184491H@CkYMemberI think they blocked yours because u was advertising too much 😮
January 3, 2005 at 11:52 pm #184490UDG ClanMemberi do adver… too much but they dont block me
January 4, 2005 at 3:57 am #184489Project SPMemberok 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 funPrivate 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 SubJanuary 4, 2005 at 3:59 am #184488AdminAdministratorlol niceeeeeeee, now i dont have to be writing all over jeje thanks man u a genius 🙂
-
AuthorPosts
Related
- You must be logged in to reply to this topic.