Forum

> > Off Topic > Unreal Software @ World of Text
ForenübersichtOff Topic-ÜbersichtEinloggen, um zu antworten

Englisch Unreal Software @ World of Text

78 Antworten
Seite
Zum Anfang Vorherige 1 2 3 4 Nächste Zum Anfang

alt Re: Unreal Software @ World of Text

Raisun
User Off Offline

Zitieren
I stole them from your shitty dictionary. Btw, dear sir, it's "where did you steal them", so you have no right to attack my vocabulary/grammar/spelling/whatever.

alt Re: Unreal Software @ World of Text

Raisun
User Off Offline

Zitieren
It'd be less painful if you gave up on trying to outsmart everyone (without any possible success).
Other than being useless, annoying and stupid user, you are actually fine.

alt Re: Unreal Software @ World of Text

Yates
Reviewer Off Offline

Zitieren
gg, Mafia_Man. Seems like I beat you to the JavaScript though
;D


Mehr >

alt Re: Unreal Software @ World of Text

mafia_man
User Off Offline

Zitieren
@user Yates:
Lel, I was to lazy, so I used my old blitzmax code.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
SuperStrict
Framework BRL.AppStub
Import BRL.Random
Import BRL.KeyCodes
Const KeyUP% = 1 | 3
Const KeyDN% = 1 | 0
Extern "win32"
	Function keybd_event(bVk@, bScan@, dwFlags%, dwExtraInfo@Ptr)
	Function GetAsyncKeyState%(key@@)
EndExtern

While True
	Delay(10)
	If GetAsyncKeyState(key_F4) <> 0 Then Exit
Wend
Delay(100)

Local i%
For i = 1 To 100000
	TypeIn("mafia_man was here ")
Next

Function PressKey(c$)
	Delay(20) 
	Select c
		Case "0","1","2","3","4","a5","6","7","8","9"
			keybd_event(KEY_0 + Int(c), 0, KeyDN, Null)
			keybd_event(KEY_0 + Int(c), 0, KeyUP, Null)
		Case "!"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_1, 0, KeyDN, Null)
			keybd_event(KEY_1, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "@"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_2, 0, KeyDN, Null)
			keybd_event(KEY_2, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "#"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_3, 0, KeyDN, Null)
			keybd_event(KEY_3, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "$"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_4, 0, KeyDN, Null)
			keybd_event(KEY_4, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "%"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_5, 0, KeyDN, Null)
			keybd_event(KEY_5, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "^"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_6, 0, KeyDN, Null)
			keybd_event(KEY_6, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "&"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_7, 0, KeyDN, Null)
			keybd_event(KEY_7, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "*"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_8, 0, KeyDN, Null)
			keybd_event(KEY_8, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "("
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_9, 0, KeyDN, Null)
			keybd_event(KEY_9, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case ")"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_0, 0, KeyDN, Null)
			keybd_event(KEY_0, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "-"
			keybd_event(KEY_MINUS, 0, KeyDN, Null)
			keybd_event(KEY_MINUS, 0, KeyUP, Null)
		Case "="
			keybd_event(KEY_EQUALS, 0, KeyDN, Null)
			keybd_event(KEY_EQUALS, 0, KeyUP, Null)
		Case "_"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_MINUS, 0, KeyDN, Null)
			keybd_event(KEY_MINUS, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "+"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_EQUALS, 0, KeyDN, Null)
			keybd_event(KEY_EQUALS, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","r","s","t","u","v","w","q","y","z","x"
			keybd_event(Asc(c) - 32, 0, KeyDN, Null)
			keybd_event(Asc(c) - 32, 0, KeyUP, Null)
		Case "A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","R","S","T","U","V","W","Q","Y","Z","X"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(Asc(c), 0, KeyDN, Null)
			keybd_event(Asc(c), 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "."
			keybd_event(KEY_PERIOD, 0, KeyDN, Null)
			keybd_event(KEY_PERIOD, 0, KeyUP, Null)
		Case ","
			keybd_event(KEY_COMMA, 0, KeyDN, Null)
			keybd_event(KEY_COMMA, 0, KeyUP, Null)
		Case " "
			keybd_event(KEY_SPACE, 0, KeyDN, Null)
			keybd_event(KEY_SPACE, 0, KeyUP, Null)
		Case "/"
			keybd_event(KEY_SLASH, 0, KeyDN, Null)
			keybd_event(KEY_SLASH, 0, KeyUP, Null)
		Case "?"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_SLASH, 0, KeyDN, Null)
			keybd_event(KEY_SLASH, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "'"
			keybd_event(KEY_QUOTES, 0, KeyDN, Null)
			keybd_event(KEY_QUOTES, 0, KeyUP, Null)
		Case "~q"
			keybd_event(KEY_LSHIFT, 0, KeyDN, Null)
			keybd_event(KEY_QUOTES, 0, KeyDN, Null)
			keybd_event(KEY_QUOTES, 0, KeyUP, Null)
			keybd_event(KEY_LSHIFT, 0, KeyUP, Null)
		Case "~t"
			keybd_event(KEY_ENTER, 0, KeyDN, Null)
			keybd_event(KEY_ENTER, 0, KeyUP, Null)
	EndSelect
EndFunction

Function TypeIn(str$)
	Local i%
	If Not str Then Return
	For i = 0 To Len(str) - 1
		PressKey(str[i..i+1])
		Delay(15)
	Next
EndFunction

alt Re: Unreal Software @ World of Text

Seekay
Reviewer Off Offline

Zitieren
@user Yates: NoooOoOoOo! Not the Hip Swastika! :cri: rip in piece, goodnite sweet prinse

Shit! They attacked my castle! Welp, can't be assed to repair that. I guess the zombies may just come inside for a tea party.

alt Re: Unreal Software @ World of Text

medeiros
User Off Offline

Zitieren
I'm actually really glad you guys are enjoying it, never thought it'd be this succesful.

user Raisun hat geschrieben
It would be great if there was something like some region protection (limited of course, so users can't spam that shit everywhere) to protect their art (real ASCII) - like user Seekay 's castle. It was great fun, indeed.

I can do that by making people members so that they can write in the light green zones. If you are serious about posting some fine ass ASCII art in zones just for you, then I guess I'm opening the member zones.

To be a member, register at YourWorldOfText.com and then post your username on this thread or PM me and I'll make you a member.

Building more member-only zones as we speak.
1× editiert, zuletzt 17.06.14 17:27:51

alt Re: Unreal Software @ World of Text

Seekay
Reviewer Off Offline

Zitieren
@user medeiros: Is roleplaying a zombie apocalypse in a castle good enough ASCII for you? Lel.

My nick is Seekay (duh). Can there be different groups or just admin/member/everyone? Kinda gay if some dude is a member and still griefs shit.

alt Re: Unreal Software @ World of Text

medeiros
User Off Offline

Zitieren
@user Seekay: yeah, that's actually pretty nice.

Made you a member, and yeah, there's only owner (me) / members / guests (everyone else). To avoid the griefing shit, I'm restricting members to a select few, which in this case is you and @user Raisun.
As for the others, I'll pick them by my own criteria, which, for example, would result in an instant denial of people like @user Xirot, kek.

alt Re: Unreal Software @ World of Text

Infinite Rain
Reviewer On Online

Zitieren
This is fucking perfect. I love this. Thank you user medeiros.
I like it even despite the fact that someone put me in the kid list.

My World of Text username is "faptis". Hopefully I meet your criteria.
1× editiert, zuletzt 17.06.14 18:22:31
Zum Anfang Vorherige 1 2 3 4 Nächste Zum Anfang
Einloggen, um zu antwortenOff Topic-ÜbersichtForenübersicht