User Controls
Posts by King of Nonces
-
2023-06-26 at 10:08 AM UTC in What do you call a ratface with no cheese?
Originally posted by Bradley i can't remember what this thread was about
thats my bit
it was a shitty joke and I ruined it by spamming it and then some idiots got serious and I ruined them like I will ruin you and every other idiot like I ruined every other idiot the past years and will continue to ruin idiots for all of time until I fucking die, maybe today, who knows
all of you should kill yourselves though before that happens, I hope I am involved in your deaths. Namaste
lets do our beast today -
2023-06-26 at 9:54 AM UTC in Meet Me On 4Chan's version of SG
Originally posted by Pete Green Stay out of Solano County if you ever visit the states especially norcal
I'm in norcal ready to shove my fist up your fucking ass , btich kike
Originally posted by Pete Green Fuck you. Where did you get that photo you photochopped my face on, bucko.
You're seriously going to fuck yourself into a situation, Pumpkin Nose.
i got it from 4chan -
2023-06-26 at 9:54 AM UTC in Meet Me On 4Chan's version of SGyou both suicide now :) bye faggots
-
2023-06-26 at 9:54 AM UTC in Meet Me On 4Chan's version of SG
-
2023-06-26 at 9:18 AM UTC in Free-4.dev
Originally posted by Pete Green Im not even a cop. get real.
are you the CEO I dropped off at Github a few years ago? I should learn coding. Python at least. im sorry I didn't learn sooner. I mean BASIC and perl we didn't have a monitor back then. everything was written on a dot-matrix. i should of kept at it. CS 101. we made neato banners though. Dot-Matrix printers are bad ass.
never too late to learn . I never took it seriously my entire life and I am starting to regret it now but with these tools and resources I think anyone can learn any language if they want to
funny you mention pascal
How to learn to write a door using Borland Pascal 7.0tm & the doorkit!
+--------------------------------------------------------------------------+
| 1. Introduction |
+--------------------------------------------------------------------------+
This document is for those people who want to start coding but didn't
know where to start... If you have Borland Pascal 7.0 you can use this!
This issue of doorsx.txt is the first and i hope I will do a few more
in the future, this doc was ment to show Zester how to code doors because
Wizard is short of door coders!!(apply!!) Iïwe included some sources and
an uart doorkit. Parts of this document ar ripped from Xroads doorinfo.doc
I hope yoïre not angry.
If you have any suggestions/comments regarding this document, contact
us. (See below!)
+--------------------------------------------------------------------------+
| 2. 'DOOR' - Basics |
+--------------------------------------------------------------------------+
Pascal is a Programming Language which is still very popular and very
usefull to learn people the basics of how to code doors & utils. To
code doors you need a 'DOORKIT'. A doorkit is a piece of software
which basicly handles the communication with the modem.
A DOOR is a piece of software which is being executed from the SYSTEM/X
boardsystem. When it is executed it takes over SYSTEM/X and the
communication with the modem. A door could, for instance, show the
last 10 callers of the board. After the door is ready it returns SYSTEM/X
and the modem to the system and quits. SYSTEM/X takes over the modem
again and continues were it left.
In order to work properly the DOOR needs to get all necessary data of
a certain user online (e.g. Name,Location, Time left on the system, etc.)
This is done by SYSTEM/X by writing a file to disk which the DOOR can
take over. This file is called the 'DROPFILE'. If this door needs to
change data which much take effect instantly, he changes the DROPFILE
which is in the memory and just before returning to SYSTEM/X he needs
to write it back to disk.
When returning to SYSTEM/X this DROPFILE, when changed, is taken over from
the DOOR to let all changes take effect immediately.
In case of a LASTCALL-door this dropfile will not be changed because,
in most cases, this door only shows something to the user but does
not need any input. In case of a ANSI-selector at login (a DOOR which
ask a user online wheter to use ANSI Colors or ASCII grey) you need
to change the DROPFILE when door is finished, otherwise SYSTEM/X will
not notice any changes in the ANSI/ASCII setup of the user.
Whit a DOORKIT you are able to make doors...
+--------------------------------------------------------------------------+
| 3. Pascal - Basics |
+--------------------------------------------------------------------------+
A simple (Borland-standard) Pascal program is of the form:
------------------------------------------------------------------------
1 Program NAME;
2
3 Uses ............;
4
5 Begin
6 End.
------------------------------------------------------------------------
The NAME can be any name you like although you should be carefull in
using numbers and certain special characters. Every block of code
begins with a 'BEGIN'-statement and ends with an 'END'-statement!
After the Uses-statement all necessary pieces of software (libraries)
needed for this program are listed. If we want to make a door the DOORKIT
should be listed there. In many cases you need the CRT and DOS libraries.
These are pieces of software with special commands.
So line 3 should be something like this:
------------------------------------------------------------------------
3 Uses Doorkitu,Crt,Dos;
------------------------------------------------------------------------
The DOORKIT consists of several commands to be used with SYSTEM/X. For
instance, if you want to write a sentence to the user online you need
the 'CWrite'-command. For instance:
------------------------------------------------------------------------
1 Program NAME;
2
3 Uses Doorkitu,Crt,Dos;
4
5 Begin
6 CWrite('Hello user!');
7 End.
------------------------------------------------------------------------
This would write 'Hello user!' to the user online.
But before you can use this code to make a door you need to add some
lines to make the DOORKIT work properly!
Just before the last 'End'-statement you need to add the line:
------------------------------------------------------------------------
CloseAll;
------------------------------------------------------------------------
Now the DOORKIT knows it has to return the modem to SYSTEM/X and releases
all used memory to the system.
So our DOOR will be:
------------------------------------------------------------------------
1 Program NAME;
2
3 Uses Doorkitu,Crt,Dos;
4
5 Begin
6 CWrite('Hello user!');
7 CloseAll;
8 End.
------------------------------------------------------------------------
This is the most simple door you can write.
+--------------------------------------------------------------------------+
| 4. Using the DROPFILE data |
+--------------------------------------------------------------------------+
Now we want to use the DROPFILE data such as the name of the user and
his location. All USERDATA of the user online is stored in the DROPFILE
which is in the memory when you use the DOORKIT. You can access this
data by using an object with the name 'DOOR'.
'DOOR' is a RECORD, which means it consist of several types of data. It
consists of
- 'STRING'-types. a STRING constist of a set of characters like
in 'Hello User!' Normally a STRING contains
255 characters but if you need less than that
STRING[x] uses only x characters where x is
a number between 1 and 255.
- 'INTEGER'-types. this is a number. In an 'INTEGER' you can put
numbers between -32768 and 32767.
- 'LONGINT'-types. this is a number. In an 'LONGINT' you can put
numbers between -2147483648 and 2147483647
- 'DOUBLE'-types. this is a number. In an 'DOUBLE' you can put
numbers from 5.0E-324 to 1.7E308. Instead of
the INTEGER and LONGINT type this DOUBLE is
floating point! for example:
A double can be 2 or 2.1 or 2.2 or 2.000001.
A INTEGER or LONGINT can only be 1,2 or 3 etc.
but nothing in between.
- 'BYTE'-types. number between 0..255
- 'BOOLEAN'-types. This can either be 'FALSE' or 'TRUE'.
- 'ARRAY'-types. An array consist of a whole set of types.
For instance:
----------------------------------------------
Array [1..10] of Byte;
----------------------------------------------
Contains 10 bytes after each other.
the 'DOOR'-record in memory consist of the following types:
------------------------------------------------------------------------
TYPE
DoorRecord = RECORD (* C:\BBS\DATA\SXDOOR.xxx *)
Name : String[30];
Location : String[30];
RealName : String[30];
NetMailName : String[30];
Password : String[15];
Phone : String[30];
Computer : String[30];
ACP : String[3];
LastConf : Longint;
Lines : Byte;
ConfAccount : Boolean;
Ratio : Byte;
RatioType : Byte;
SecLvl : Byte;
CallsTotal : Longint;
CallsWeek : Longint;
CallsMonth : Longint;
Ups : Longint;
Downs : Longint;
Upk : Double;
DownK : Double;
DownToday : Longint;
BytesAvail : Longint;
MsgPosted : Longint;
MsgReceived : Longint;
Cps_Up : Longint;
Cps_Down : Longint;
WeekUpk : Longint;
WeekUps : Longint;
WeekDownk : Longint;
WeekDowns : Longint;
MonthUpk : Longint;
MonthUps : Longint;
MonthDownk : Longint;
MonthDowns : Longint;
FakeUps : Longint;
FakeUpk : Longint;
FreeDowns : Longint;
FreeDownk : Longint;
LastDate : String[8];
LastTime : String[8];
FirstDate : String[8];
FirstTime : String[8];
BirthDate : String[8];
(* ALL TIME LIMITS ARE IN SECONDS *)
TimeLeft : Longint;
TimeDay : Longint;
TotalTime : Longint;
NodeChatAvail : Longint;
NodeChatLeft : Longint;
NodeChatTotal : Longint;
SysopChatTotal : Longint;
SysopChatRecord : Longint;
MenuSet : Byte;
Protocol : Byte;
Deleted : Boolean;
Hidden : Boolean;
CmndMode : Boolean; { False = Seclvl, True = Very Own}
SentBy : String[80];
Flags : Array[1..150] of Boolean;
PageTries : Byte;
FutureExpand1 : Array[1..29] of Byte;
LcDate : String[8]; { VARIABLES from LASTCALL }
LcLogontime : String[8];
LcBaudRate : String[6];
LcBaudStr : String[40];
LcDownload : Boolean;
LcUpload : Boolean;
LcPosted : Boolean;
LcRead : Boolean;
LcWantedChat : Boolean;
LcChated : Boolean;
LcNodeChat : Boolean;
LcScanned : Boolean;
LcLostCarrier : Boolean;
LcHacking : Boolean;
LcDowns : Integer;
LcUps : Integer;
LcDownk : LongInt;
LcUpk : LongInt;
SysopAccess : Boolean;
ChatOnOff : Boolean;
StatLineOn : Boolean;
CaptureOn : Boolean;
TempFreeLeech : Boolean;
Reserved : Boolean; {NOT USED YET}
Paged : Boolean;
Ansi : String[3]; (* 'ANS' or 'ASC' *)
Local : Boolean;
ConfPath : String[60];
ConfName : String[30];
OpenParams : String[255];
OnlineBaud : Longint;
Node : Byte;
HiddenNode : Boolean; { 1.1 }
FutureExpand2 : Array[1..333] of Byte;
end;
------------------------------------------------------------------------
The texts between '{' and '}' or '(*' and '*)' are comments and do not
mean anything!
If, for instance, you want to write some user information to the user
online you can use 'CWrite' to show it. But 'CWrite' only is
able to show 'STRING'-types. In order to be able to show numbers to
you need to convert numbers to a string.
For instance, when Number is a number of 'LONGINT'-type:
------------------------------------------------------------------------
CWriteln(int2Str(Number,0));
------------------------------------------------------------------------
This would print the number 'Number' in no particular size.
If you want to show data from the DOOR-record you need to use:
DOOR.xxxxxx, where xxxxxx is the name of the datafield.
If you want to show the user's name you do this:
------------------------------------------------------------------------
CWriteln(Door.Name);
------------------------------------------------------------------------
If you want to show the user's location you do this:
------------------------------------------------------------------------
CWriteln(Door.Location);
------------------------------------------------------------------------
If you want to show the user's securitylevel you do this:
------------------------------------------------------------------------
CWriteln(Int2Str(Door.SecLvl,0));
------------------------------------------------------------------------
Notice the use of 'Int2Str' to convert this 'BYTE'-type number to
a string. (the Security level is a number between 0 and 255)
I have included some sources, each of the have a doc and some comments.
Start with frstdoor.doc its the easiest and work throug them.
If you hamve any problems or want more dox like this contact us!
Good luck whit your door coding!
/Ballista/Wizard
+--------------------------------------------------------------------------+
| 5. How to contact Wizard |
+--------------------------------------------------------------------------+
ARiONA WiZARD Whq +46-(0)381-91080
Or E-mail us at
ballista@algonet.se
Or join os at irc
#Wizard
+--------------------------------------------------------------------------+ -
2023-06-26 at 8:59 AM UTC in AI general ThreadAi convergence good
-
2023-06-26 at 8:56 AM UTC in Free-4.dev
-
2023-06-26 at 8:55 AM UTC in What do you call a ratface with no cheese?a faggot and a federal agent closet nonce, faggots of a feather folkx????? lets all show our buttholes on tinychat tehehehe
-
2023-06-26 at 8:54 AM UTC in What do you call a ratface with no cheese?
-
2023-06-26 at 8:44 AM UTC in What do you call a ratface with no cheese?
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Basically no more rattex for you scron
Originally posted by The Self Taught Man Fuck pyramids man TRIANGLES or "delta" ∆ 1D 4D zero G look at me. Fuck the Pharaohs man let's pick up the pyramids of Giza and cut them on a giant laser stone splitter and turn it all into FLAT DELTA TRIANGLES ∆. And we will have a marching band on the streets playing death metal on electric triangles DING DING DING with a free concert featuring pink Floyd and DEVO opened by LOCKED IN PRISM and the only food is Doritos chips.
AlsO LOL I have a new religion DING DING DING
Originally posted by The Self Taught Man He needs to chug an entire kilogram of bundy and perform the song of trianglism on a triangle ∆ DING DING DING DING DING DING DING DING OH YEAH ©®|B LEG BAG DING DING DING DING​​
Originally posted by The Self Taught Man Let me perform for you the dance of my people DING DING DING DING DING ∆∆∆∆ DING DING DING BUCK BUMBLE BITCH!! DING TRIANGLES AND OTC BEEDRILL SCRATCH MY bundy NOW SCRONNY CANT EVEN SPLOO ∆∆∆ *CHUGS A BOTTLE OF ROBOTUSSIN*
-
2023-06-26 at 8:07 AM UTC in I never received my package so please provide a full refund immediately...they scamming you pops?
-
2023-06-26 at 8:06 AM UTC in WTF Frala or Wintermute or Aldra
-
2023-06-26 at 7:59 AM UTC in Meet Me On 4Chan's version of SG
Originally posted by slide22 Just who the hell do you think you are you think you have friends you have no friends you can't make friends because you're just a really bad person with bad breath and you're ugly and nobody wants to be friends with an ugly bad breath person so shut your stupid fat face up stupid man
When is the last time you entertained company in your home?
Me: I don't go outside or let people in my house
When is the last time you had cookout/jam sessions with more than guests that people talk about for months after?
Me: i've been on a drug binge for a year
When is the last time you facilitated a $50,000 donation from a charitable trust fund you manage to help start a 501c3 dedicated to teaching music to children?
Me: i need peanut butter
When is the last time you barted with neighbors to do land clearing in exchange for automotive repair, body work, and help remodeling your porch?
Me: what thread is this whats going on
When is the last time someone offered to help you load, transport, and unload 3800 lbs of flagstone and pavers just because they knew you could use a hand?
Me: I don't fuck with your gay society
When is the last time that you bought a gun you really didn't want and a pool table that you probably won't use much just to help a friend in hard times?
Me: America is evil, nazis
When is the last time a younger friend called you from out of state to seek your advice on an issue involving their 15 year old son?
Me: You are a communist agent
When was the last time someone let you borrow their 3/4 ton truck to haul a tractor 400 plus miles?
Me: All communists!!
When was the last time woman who cared about you bought you a surprise just to show she was thinking about you?
Me: today :)
When was the last time a neice, nephew, or grandchild gave you a hug and said they loved you?
Me: you killed your family though, paul wozny
When was the last time one of your children told you they loved you or bought you something?
Me: and you talk about children a lot and stalk people online
When was the last time you walked into a bar and over 20 people greeted you by your first name within the 1st half hour you were there?
Me: I don't drink
When was the last time someone not related to you traveled from out of state or even out of town just to visit you?
Me: I don't travel
When was the last time someone sought your advice on anything in the real world face to face?
Me: Every day, I help people all the time
You see Pauliwog, I did nit shun or hide from my darkside. I embraced it and in doing so have made it my steed. It is strong and serves me well. But my real strength come from my kind healing nature towards those who merit it. I can offer aid and comfort to my allies and deliver destruction to those who would come against me or mine.
You paint me with the the same brush you see stroked upon yourself. I promise I am nothing like you or like what you grossly misperceive me to be.
I know you will not answer the questions which I have asked you. The honest answers would be too difficult or even painful for you to admit even to yourself. -
2023-06-26 at 7:53 AM UTC in What are you doing at the moment
-
2023-06-26 at 7:52 AM UTC in What do you call a ratface with no cheese?
Originally posted by Ghost its a shame how you have all failed the true test of jeff hunter and become nothing but rats nipping at each others feet
Footage recovered from after rdfrn.com got shut down by doxxing PI rattexes
You worship DEMON RATS and PI RAT DOXXING FAGGOTS now like the masked faggot who runs this joint
THE TEMPLE?! Hah! This place is nothing BUT A TEMPLE OF RATS
FEASTING ON EACH OTHER UNTIL THERE IS NOTHING LEFT
REPENT!
JOIN THE TRIANGLE SPACE EMPIRE OR BURN FOR ALL ETERNITY ON EARTH THE DOMINION OF SATAN IS IS MANS GOAL TO CONQUER THE STARS AND SHARE FREE INFORMATION WITH THE UNIVERSE AS PER JEFF HUNTERS INSTRUCTIONS
-
2023-06-26 at 7:51 AM UTC in WTF Frala or Wintermute or Aldra
-
2023-06-26 at 7:50 AM UTC in People are worth less than money... money is more important than people...kike
-
2023-06-26 at 7:50 AM UTC in People are worth less than money... money is more important than people...
Originally posted by Pete Green Wellhung
go here real quick. no need to join just post.
https://boards.4chan.org/pol/thread/432182219
killy yourself you accuse others of being a pedo you sick fuck , die in a fire nigger -
2023-06-26 at 7:47 AM UTC in Meet Me On 4Chan's version of SGmy name is paul wozny aka totse2k1 and I molest children!
Fuck you paul wozny you fake mentally ill for attention calling the police on people you accuse of working for the police which every retard schizo does except for you it's half fake, half real in the most unfunny lame annoying way possible and you should kill yourself or quit the forum for months or years or possibly the rest of your miserable life you pathetic fake-schizo police faggot
you are just trying to get banned like you did on sept 11, 2001
Originally posted by BeigeWarlock So I then Joined under a new user-name around Jan-Feb 2001.
I want to say the month was March, but other older documents showed I stated May (or may was when I first came across the thread written) in which what appeared to be a group claiming they were going to highjack planes and crash them into the WTC buildings and into the Pentagon as well as the White House and Capital buildings.
Originally posted by BeigeWarlock 1badAideas.jpg
Originally posted by BeigeWarlock I found this one odd thread page from archive.org of a person name James1rob saying "WE WANT BAD IDEAS" (which I believe was a forum) on September 16th 2001, with a followup from MS3FGX saying "Yeah! First you blocked the porn, Now you took away the biggest part of TOTSE.. goes onto say "I know this is serious times and all but what does any of this have to do with totse.. They didn't see any "Fly planes into building" Files on this site. So why take "Bad Ideas" off? but the post shows a person who joined Dec 2000 and only made this very one post. a post count of 1 in about a years active account status. it seems very staged. If it had been made the day after 9/11 it would of seemed less suspicious because it would be an anonymous looking person wanting to know why. but instead it's an establish user who decides to speak up. the accounts, their information and other things can be manipulated by these people. they're very good at coding, faking addresses and such.
Please refer to the files "1BadIdeas.jpg" and 1bBadIdeas.jpg. shows the post made. the mario (mario marior video game character) is a layer and not apart of the original page. it related to a user by the name of Toiletduk who also Im told went by bloodydiaperman. Also look at photo 1SomethingAweful which while doing a search for "Toiletduk" i found this page on google search and copy-prnt it. look at the date it was posted and locked as a thread. it has a link to a mario cartoon which was the same as this 1bBadIdeas but as a flash animation. of Mario jumping on a TNT plunger and blowing up the WTC.
This is where it gets weird. the original was made by the year 1999. that was its creation date. yet, why is this person suddenly posting it again in September 1st 2001 and why was the thread locked?
Originally posted by BeigeWarlock I was taking vicodin 7.5/350 the night of september 10th.
lol
Originally posted by BeigeWarlock On September 11th, around 7:15 in the morning, My (then) Wife called me. Though I didn't know it was her at first, I was still sleeping in and the phone rang and rang. My 2 children of age 2 and 4 were still sleeping as well. I normally got them up at 7am.
The phone rang and rang, I was very groggy from the vicodin and suddenly I woke on the third or forth round of the phone ringing incessantly each time. I ran to the phone and no one was there on the first attempt to pick it up. It rang again and I picked it up. My wife was on the phone, crying. I said what is wrong. She said "Turn on the TV". I said, why were you in an accident. She stated no. I was turning on the TV which was still a CRT type, warming up to turn on. and just then the TV came on. Showing Live.. with both WTC burning. She said "The buildings collapsed". I said, No they're still standing . It says live (which normally it would say "earlier broadcast"). She said "No trust me.. they fell. My Boss Jennifer from NYC told us to close down the hotel (She was working in, owned by the Marriott) and that they may attack other cities.. especially San Francisco and LA.
I told her to do what Jennifer had told her to and get home.
I immediatly logged onto totse.com because of what had happened and the post made regarding the attack. the person Enigma (Jeff Hunter) who runs the website had a way of popping up in a window to speak to you in person. As I was PM'ing him (private message) he popped up. He used to use this bot chat feature to test people with his AI-bot that he used to see how fast it would take someone to figure out if it was human or not, while he watched. So I was familure with the chat box. I asked "Jeff is that you" and he said it was. something about "Please don't bother me about this. Or I will kick your ass off the website".
This was all posted after september 11th, sounds more like you had a schizo meltdown when those planes hit which caused you to not only lose your wife and kids at the time but also get banned from TOTSE and fired from your job all on the same day and you have somehow over the years merged these together into one grand theory.
You literally were shit posting high on vicodin on totse on september 2001 and blaming people on that website for the september 11th attack which probably pissed everyone off being accused of being involved in an attack on their country YOU ARE ALL IN ON IT!!!!! so they banned your ass. And now you do the exact same thing to us accusing us of every crime under the sun but Lanny isn't a faggot like Jeff so you don't get banned, fuck you.
Originally posted by BeigeWarlock these went out to the Whitehouse and to the NYC/NJ Port Authority as of this week.
How much did you get paid for that? I have done some high quality research tonight and believe I deserve to be compensated for proving your theories all wrong. Please let your handlers know, thanks.
Originally posted by BeigeWarlock the thing I found unusual about this thread was they used (perhaps) a UBB code to highlight the background with an illuminating forground text. sort of a glowing white text with blueish hue over a background of dark grey (rather than the white-blue theme.)
Originally posted by Murk Lore Wow you're theories are all over the fucking place.
no they aren't
Originally posted by Ghost I joined and it was only "lukr more" on cam mid sentence, he told me to stay and answer some questions.
I asked if it was an interrogation and he said yes and then flashed me his badge, I was only able to get a quick screen grab
-
2023-06-26 at 7:43 AM UTC in Meet Me On 4Chan's version of SGyou are more of a nonce than wariat, let me change my picture accordingly