Register - Login
Views: 99871390
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
05-04-22 07:10:07 PM
Jul - Display Case - wacky waving inflatable arm flailing tube text New poll - New thread - Thread closed
Pages: 1 2 3 4 5 6Next newer thread | Next older thread
Eppy37
Banned
If you want back, get in touch.

Level: 144


Posts: 254/6240
EXP: 36219611
For next: 490695

Since: 07-23-07

Pronouns: he/him
From: Boguslovania

Since last post: 3.0 years
Last activity: 256 days

Posted on 07-27-07 07:11:03 PM Link
Feh. At least Im not using IE...

____________________

Sine
2310
Level: 94


Posts: 250/2316
EXP: 8201756
For next: 154901

Since: 07-07-07


Since last post: 3.7 years
Last activity: 290 days

Posted on 07-27-07 07:11:13 PM Link
~Hi people~
----------------------------------------------------
Originally posted by Xkeeper
Originally posted by Electrometer Prime
Highlighting it is a bloody pain in the ass, especially when it takes you to the bottom of the page.

Only if you use Firefox
Not really

It doesnt do that for me :o

____________________
Wheee, flying on a warpstar through space!
DigitalBasic
Pancakes!
Level: 174


Posts: 431/9712
EXP: 70459836
For next: 438031

Since: 07-03-07

Pronouns: they/them

Since last post: 76 days
Last activity: 4 days

Posted on 07-27-07 07:11:30 PM Link
Originally posted by Xkeeper
Originally posted by Electrometer Prime
Highlighting it is a bloody pain in the ass, especially when it takes you to the bottom of the page.

Only if you use Firefox

Don't have that problem so...

Maybe I am just special like that.

____________________

hehe, I have boobies. *squish squish*
Ninji

Birdo
Why did my user title say I'm a toaster anyway
Level: 88


Posts: 25/2014
EXP: 6639500
For next: 11164

Since: 07-26-07

Pronouns: he/him or they/them
From: Glasgow, Scotland

Since last post: 115 days
Last activity: 7 days

Posted on 07-27-07 07:13:39 PM Link
At the time of writing this post, I had..
Posts: 25 ~ Level: 4 ~ Exp: 140

So here's the code! (Visual Basic 6.. although theoretically it should work in older versions). Set source_text to the text you want to wavify, and the text will come out in dest_text!

Dim cur_char As Integer, cur_offset As Integer
Dim add_offset As Integer, text_pos As Integer
Dim source_text As String, dest_text As String

If source_text = "" Then Exit Sub

add_offset = 1
For cur_char = 1 To Len(source_text)
dest_text = dest_text & "<span style='position: relative; top: " & Trim(Str(cur_offset)) & ";'>" & Mid(source_text, cur_char, 1) & "</span>"
cur_offset = cur_offset + add_offset
text_pos = text_pos + 1
If text_pos = 6 Then add_offset = 0
If text_pos = 8 Then add_offset = -1
If text_pos = 14 Then add_offset = 0
If text_pos = 16 Then add_offset = -1
If text_pos = 22 Then add_offset = 0
If text_pos = 24 Then add_offset = 1
If text_pos = 30 Then add_offset = 0
If text_pos = 32 Then add_offset = 1: text_pos = 0
Next cur_char

also, reposted with smilies disabled. :O

____________________


NSMB Editor 2.0
making awesome SMB remakes since 16/7/07

current progress on version 2.1:
enemy viewing: done
enemy editing: in progress
enemy saving: null

Xkeeper

Level: 263


Posts: 1378/25353
EXP: 297182294
For next: 1778159

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 4 days
Last activity: 7 hours

Posted on 07-27-07 07:17:58 PM Link
Daily Cycle II ~ 1378
You'd get better results with sin()

____________________
Stats
Level 34
EXP: 23953/24472
Time: 24 days
Ranked at #1
 

 
Rena
I had one (1) message in Discord deleted and proceeded to make a huge, huge mess about how it was a violation of free speech and how moderators are supposed to be spam janitors and nobody should have the right to tell me not to talk about school shootings
Level: 135


Posts: 342/5390
EXP: 29079606
For next: 255399

Since: 07-22-07

Pronouns: he/him/whatever
From: RSP Segment 6

Since last post: 343 days
Last activity: 343 days

Posted on 07-27-07 07:25:39 PM Link
JL2 - Post #342 - 07-27-07 02:25 PM
Day 5, rank 7; Level 15 (41.7%)
1382/3313 (14453/16384)
GPP: 63; GT: 62.435
You win an Internet.

The coolest text-related script I've made is this.

BTW, I have no trouble highlighting the wavy text in Firefox.

____________________
My Site | How this layout should look
WIP layout - todo: make Rena show up correctly in long posts
Eppy37
Banned
If you want back, get in touch.

Level: 144


Posts: 257/6240
EXP: 36219611
For next: 490695

Since: 07-23-07

Pronouns: he/him
From: Boguslovania

Since last post: 3.0 years
Last activity: 256 days

Posted on 07-27-07 07:26:19 PM Link
I really like that falling one alot.

____________________

Ninji

Birdo
Why did my user title say I'm a toaster anyway
Level: 88


Posts: 26/2014
EXP: 6639500
For next: 11164

Since: 07-26-07

Pronouns: he/him or they/them
From: Glasgow, Scotland

Since last post: 115 days
Last activity: 7 days

Posted on 07-27-07 07:26:40 PM Link
At the time of writing this post, I had..
Posts: 26 ~ Level: 4 ~ Exp: 149

Yay, improved and shortened code! Now uses Sin() upon Xkeeper's suggestion.

Function WavyText(source_text As String) As String
Dim cur_char As Integer, cur_offset As Integer
Dim add_offset As Integer, text_pos As Integer
Dim dest_text As String

If source_text = "" Then Exit Function

add_offset = 1
For cur_char = 1 To Len(source_text)
cur_offset = Int((Sin(cur_char / 4) * 6) + 0.5)
dest_text = dest_text & "" & Mid(source_text, cur_char, 1) & ""
Next cur_char

WavyText = dest_text
End Function

____________________


NSMB Editor 2.0
making awesome SMB remakes since 16/7/07

current progress on version 2.1:
enemy viewing: done
enemy editing: in progress
enemy saving: null

Nicole

Disk-kun
Level: 146


Posts: 165/6469
EXP: 38290093
For next: 223201

Since: 07-07-07

Pronouns: she/her
From: Boston, MA

Since last post: 79 days
Last activity: 20 hours

Posted on 07-27-07 07:37:03 PM Link
Hm, now what would happen if you used tan()

____________________
??
Xkeeper

Level: 263


Posts: 1381/25353
EXP: 297182294
For next: 1778159

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 4 days
Last activity: 7 hours

Posted on 07-27-07 07:37:46 PM Link
Daily Cycle II ~ 1381
Originally posted by Imajin
Hm, now what would happen if you used tan()

Let's find out


____________________
Stats
Level 35
EXP: 379/26285
Time: 24 days
Ranked at #1
 

 
Eppy37
Banned
If you want back, get in touch.

Level: 144


Posts: 260/6240
EXP: 36219611
For next: 490695

Since: 07-23-07

Pronouns: he/him
From: Boguslovania

Since last post: 3.0 years
Last activity: 256 days

Posted on 07-27-07 07:38:08 PM Link
Gah I played with tan() before. Went all freeky.

____________________

Kles

Level: 87


Posts: 175/1947
EXP: 6312791
For next: 79983

Since: 07-23-07


Since last post: 79 days
Last activity: 7 hours

Posted on 07-27-07 07:38:33 PM Link
Originally posted by Xkeeper
Originally posted by Imajin
Hm, now what would happen if you used tan()

Let's find out



Oh god no.

____________________
؟
Xkeeper

Level: 263


Posts: 1382/25353
EXP: 297182294
For next: 1778159

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 4 days
Last activity: 7 hours

Posted on 07-27-07 07:40:35 PM Link
Daily Cycle II ~ 1382
this is the weird effects of using tan(), it's pretty weird

____________________
Stats
Level 35
EXP: 665/26285
Time: 24 days
Ranked at #1
 

 
Rena
I had one (1) message in Discord deleted and proceeded to make a huge, huge mess about how it was a violation of free speech and how moderators are supposed to be spam janitors and nobody should have the right to tell me not to talk about school shootings
Level: 135


Posts: 346/5390
EXP: 29079606
For next: 255399

Since: 07-22-07

Pronouns: he/him/whatever
From: RSP Segment 6

Since last post: 343 days
Last activity: 343 days

Posted on 07-27-07 07:44:02 PM Link
JL2 - Post #346 - 07-27-07 02:44 PM
Day 5, rank 7; Level 15 (49.9%)
1654/3313 (14725/16384)
GPP: 63; GT: 61.430
Neat. It's as if it were wrapped around a pole.

____________________
My Site | How this layout should look
WIP layout - todo: make Rena show up correctly in long posts
Eppy37
Banned
If you want back, get in touch.

Level: 144


Posts: 261/6240
EXP: 36219611
For next: 490695

Since: 07-23-07

Pronouns: he/him
From: Boguslovania

Since last post: 3.0 years
Last activity: 256 days

Posted on 07-27-07 07:45:52 PM Link
Told ya Tanget does weird things.

____________________

Xkeeper

Level: 263


Posts: 1383/25353
EXP: 297182294
For next: 1778159

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 4 days
Last activity: 7 hours

Posted on 07-27-07 07:46:56 PM Link
Daily Cycle II ~ 1383
Originally posted by HyperHacker
Neat. It's as if it were wrapped around a pole.



At least it's not this really weird earthquake shit

____________________
Stats
Level 35
EXP: 964/26285
Time: 24 days
Ranked at #1
 

 
Xkeeper

Level: 263


Posts: 1384/25353
EXP: 297182294
For next: 1778159

Since: 07-03-07

Pronouns: they/them/????????

Since last post: 4 days
Last activity: 7 hours

Posted on 07-27-07 07:51:28 PM Link
Daily Cycle II ~ 1384
Here's sin(cos(tan(x))) now, it's pretty funky

____________________
Stats
Level 35
EXP: 1257/26285
Time: 24 days
Ranked at #1
 

 
Dprotp
GIRL'S GOT A PENITENTIARY BODY
Level: 107


Posts: 243/3147
EXP: 12995286
For next: 96025

Since: 07-04-07

Pronouns: he/him
From: FIRE STATE

Since last post: 1.5 years
Last activity: 106 days

Posted on 07-27-07 07:51:37 PM Link

That falling text was absolute hell to read... Until I realized I could just

View > Page Style > No Style

____________________
Originally posted by Grey Mario
oh well, just trust someone remembers to screenshit it


...and here he uses the strategy of going really fast and not falling in
Nicole

Disk-kun
Level: 146


Posts: 166/6469
EXP: 38290093
For next: 223201

Since: 07-07-07

Pronouns: she/her
From: Boston, MA

Since last post: 79 days
Last activity: 20 hours

Posted on 07-27-07 07:53:04 PM Link
Originally posted by Doritokiller
That falling text was absolute hell to read... Until I realized I could just

View > Page Style > No Style

Yes, but that destroys the entire page layout, not just Xk's text... It's not worth it!


____________________
??
Dprotp
GIRL'S GOT A PENITENTIARY BODY
Level: 107


Posts: 244/3147
EXP: 12995286
For next: 96025

Since: 07-04-07

Pronouns: he/him
From: FIRE STATE

Since last post: 1.5 years
Last activity: 106 days

Posted on 07-27-07 07:57:26 PM Link

Originally posted by Imajin
It's not worth it!


Wrong-o, Wright-o. I read Xk's now-possible-to-read text, and then I re-enable styles. Completely worth it.

____________________
Originally posted by Grey Mario
oh well, just trust someone remembers to screenshit it


...and here he uses the strategy of going really fast and not falling in
Pages: 1 2 3 4 5 6Next newer thread | Next older thread
Jul - Display Case - wacky waving inflatable arm flailing tube text New poll - New thread - Thread closed


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

28 database queries, 1 query cache hits.
Query execution time: 0.109228 seconds
Script execution time: 0.059738 seconds
Total render time: 0.168966 seconds