Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - PeeEsPee

Pages: [1] 2 3 4 5
1
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 10, 2013, 11:30:50 AM »
but IP addresses aren't that accurate?
do you even know what a whois is?
http://www.whois.com/whois/zapkraft.com

2
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 10, 2013, 11:14:15 AM »
Thanks for giving out my address.
your address is public knowledge via a whois.

3
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 10, 2013, 02:53:59 AM »
pretty clearly just psp trolling
man it is so clear


all is well no?

4
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 10, 2013, 02:51:59 AM »
but you own the site that now directs to researchhub

???

zapk has control over it as well

5
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 10, 2013, 02:47:33 AM »
you also have the power to change it

6
Drama / Re: Psp4804: "you should have bought it when you had the chance"
« on: November 09, 2013, 11:18:19 AM »
Somewhere in the middle of the conundrum in the same thread posted before, he bought the domain zapkraft.com, an impersonation of my site (zapkraft.netne.net). It was just a fake FBI warning for a government takedown.

you forget the part where you told me to do the exact same to tezuni.com and thats why I did it to zapkraft.com
also it's not really an impersonation of your site, as that makes it sound like a replica to trick people. It's just a site with your name.

Either a. Tezuni is paying him to have it redirect to his site
B. he's doing it solely to be a giant asshat
C. He's a dumbass
Or d. All of the above. Just my thoughts though.
Tezuni's not paying for it.

7
General Discussion / Re: Donation Systems for Servers
« on: November 09, 2013, 11:16:54 AM »
day 3: tezuni's server shut down for tax fraud

8
General Discussion / Re: Donation Systems for Servers
« on: November 09, 2013, 11:11:19 AM »
Psp convinced me to open donations to raise the $35 he wanted for the domain name he jacked. When I told him I haven't received any donations a month later, that's what he told me. I sold my iPod a couple weeks ago to pay for hosting, and when I confronted him to buy the domain, he wouldn't give it up anymore. I didn't really want to give in-game advantages that actually affect the gameplay, I just don't think that's fair.

i also offered to donate 10 dollars.

9
General Discussion / Re: Donation Systems for Servers
« on: November 09, 2013, 11:09:37 AM »
LOL





HAHAHAHAA

We lowered the amount on the server to encourage donations.

10
General Discussion / Re: Donation Systems for Servers
« on: November 08, 2013, 10:02:23 AM »
He has 71 VIPs for 10+ donations each, but that also counts VIPs before the limit was 10 (was 5) and people who donated over 10 dollars, which there are many of. Speaking of tezuni, if you end up choosing a donation system, there are some good ways to get perks automatically, ex http://tezuni.com

(also VIP isn't 20 dollars)

11
Modification Help / TCPObject only returning headers
« on: November 03, 2013, 09:28:24 PM »
For some reason, my TCP object only returns headers when querying my server, and no actual data:
Code: [Select]
LINE RECEIVED HTTP/1.1 200 OK
LINE RECEIVED Date: Mon, 04 Nov 2013 02:27:00 GMT
LINE RECEIVED Content-Type: text/html
LINE RECEIVED Content-Length: 3
LINE RECEIVED Connection: keep-alive
LINE RECEIVED Server: Apache/2
LINE RECEIVED X-Powered-By: PHP/5.2.17
LINE RECEIVED Cache-Control: private, pre-check=0, post-check=0, max-age=0
LINE RECEIVED Expires: 0
LINE RECEIVED Pragma: no-cache
LINE RECEIVED

The server does however print text, yet it seems to never show it to the TCPObject
Code: [Select]
pkt = "GET * HTTP/1.1\r\nHost: pspnetworkscom.fatcow.com\r\nUser-Agent: Torque/1.0\r\n\r\n";Any ideas?

EDIT: Solved; changing HTTP/1.1 to HTTP/1.0 fixed the issue (I also removed the User Agent)
Code: [Select]
pkt = "GET * HTTP/1.0\r\nHost: pspnetworkscom.fatcow.com\r\n\r\n";

12
Drama / Re: Tezuni - King of the server list.
« on: September 09, 2013, 11:01:44 PM »
TTD (Time To Drama) = 2m

13
Drama / Re: Tezuni - King of the server list.
« on: August 21, 2013, 10:47:24 AM »
This became tezuni bragging about his server to psp's logo

natural transitioning.

14
Drama / Re: Tezuni - King of the server list.
« on: August 19, 2013, 10:44:20 PM »


restoring site

15
General Discussion / Re: T+T - Help
« on: August 07, 2013, 06:32:22 PM »
T-T executes before RTB; and it doesn't exec the hooks file

Code: [Select]
if(isFile("Add-Ons/System_ReturnToBlockland/server.cs"))
{
    if(!$RTB::RTBR_ServerControl_Hook)
exec("Add-Ons/System_ReturnToBlockland/RTBR_ServerControl_Hook.cs");

    RTB_registerPref("Ammo System","Tier+Tactical Ammo","$Pref::Server::TTAmmo","int 0 2","Script_GamePreferences",0,0,1);
    Blah
}

would be accurate, but instead it does

Code: [Select]
RTB_registerPref("Ammo System","Tier+Tactical Ammo","$Pref::Server::TTAmmo","int 0 2","Script_GamePreferences",0,0,1);
To fix it, just make a folder called zBlah_Blah or something, and give it a description.txt and make the server.cs
Code: [Select]
   if(!$RTB::RTBR_ServerControl_Hook)
exec("Add-Ons/System_ReturnToBlockland/RTBR_ServerControl_Hook.cs");
and the hooks will be setup first so everything works fine.

Pages: [1] 2 3 4 5