generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripters
Home Search
 

Re: Codegolf 6 /The letter A without A

Previous Thread :: Next Thread 
Aiekan82 is not online. Aiekan82
Joined: 03 Jul 2015
Total Posts: 33
09 Sep 2016 02:32 PM
Your task is to print the letter "A" alone, without anything else, except any form of trailing newlines if you cannot avoid them.

However, you must not use any of the below characters in your code:

A, whether uppercase or lowercase.
U, whether lowercase or uppercase.
X, whether uppercase or lowercase.
+
&
#
0
1
4
5
6
7
9
You are allowed to use any characters that you like in your code, with the exception of the above list of characters.

Cheating, and loopholes, etc, are not allowed.
Report Abuse
Flux_Capacitor is not online. Flux_Capacitor
Joined: 07 Apr 2008
Total Posts: 45720
09 Sep 2016 02:33 PM
stop spamming stupid
Report Abuse
Afro_Sub is not online. Afro_Sub
Joined: 16 Jun 2013
Total Posts: 1114
09 Sep 2016 02:33 PM
just use enums code thingys whatever


Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 02:51 PM
print(string.char(string.byte("┬")/2))
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 02:52 PM
nvm
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 02:53 PM
there's seriously a ton of ways, and this has been posted too much

print(tostring(settings()):sub(5, 5):upper())

Formerly ToxicDominator - add 17,509 posts
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 02:57 PM
local one = string.byte(" ")/string.byte(" ")
local chr = string.char(one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one)
print(chr)
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 02:58 PM
he Modify it so you cannot use number's
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 02:58 PM
if you're going by that list then yours doesn't work either

Formerly ToxicDominator - add 17,509 posts
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:02 PM
b=string
print(b.char(b.byte" "+b.byte" "+b.byte" "+b.byte" "/b.byte" "))


Golfed Down
Report Abuse
zaniac10 is online. zaniac10
Joined: 18 Aug 2009
Total Posts: 10000
09 Sep 2016 03:03 PM
he didnt use a number
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:03 PM
b=string
print(b.char(b.byte" "+b.byte" "+b.byte" "/b.byte" "))


This Prints Capital A
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 03:04 PM
using "+" is restricted

Formerly ToxicDominator - add 17,509 posts
Report Abuse
zaniac10 is online. zaniac10
Joined: 18 Aug 2009
Total Posts: 10000
09 Sep 2016 03:04 PM
oh ya
Report Abuse
zaniac10 is online. zaniac10
Joined: 18 Aug 2009
Total Posts: 10000
09 Sep 2016 03:05 PM
use the same principle as this

local one = string.byte(" ")/string.byte(" ")
local chr = string.char(one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one + one + one + one +
one + one + one + one + one + one + one)
print(chr)

but make it subtraction since that isnt restricted
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 03:06 PM
"local" has 'a' in it

Formerly ToxicDominator - add 17,509 posts
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:08 PM
b=string
print(b.char(b.byte" "-(-b.byte" ")-(-b.byte" "/b.byte" ")))
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 03:09 PM
"b.char"
"a"

Formerly ToxicDominator - add 17,509 posts
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:09 PM
char has "a" in it RIP
Report Abuse
thedailyblarg is not online. thedailyblarg
Joined: 26 Feb 2012
Total Posts: 5506
09 Sep 2016 03:10 PM
char has local in it

the easiest way is obviously

print("\65")

by using escape sequences
Report Abuse
thedailyblarg is not online. thedailyblarg
Joined: 26 Feb 2012
Total Posts: 5506
09 Sep 2016 03:11 PM
char and local both have A in it*****
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:11 PM
##############################################################################################################################################
Report Abuse
Skellobit is not online. Skellobit
Joined: 13 Apr 2016
Total Posts: 12758
09 Sep 2016 03:12 PM
6 and 5 are disallowed
try again

Formerly ToxicDominator - add 17,509 posts
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:12 PM
^ U cant use numbers Finally Solved It paste bin ## # # / ########
Report Abuse
MiniNob is not online. MiniNob
Joined: 14 May 2013
Total Posts: 822
09 Sep 2016 03:13 PM
paste bin / q H U 5 0 Q C E
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripters
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image