|
| 10 May 2015 11:02 PM |
pls no going past httpservice anything above data stores and httpservice is off limits
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 10 May 2015 11:03 PM |
Remake loadstring in Lua with Lua.
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:06 PM |
What does "above data stores and httpservice" mean?
--Script, workspace g=math.random(1,1000000) --//
Print the value of g without referring to g, its KeyCode or byte value, without using aliases, and without printing more than the value of g. |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:07 PM |
ok then
function ls(string) loadstring(string) end
local thingy = ls("hello world") print(thingy)
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:09 PM |
Amendment to the rules.
Print the value of g without referring to g, its KeyCode or byte value, without using aliases, and without using the print function more than once. |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:10 PM |
"Print the value of g without referring to g, its KeyCode or byte value, without using aliases, and without printing more than the value of g." if g <= 100000 and g >= 0 then print(g) end
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 10 May 2015 11:10 PM |
Fail, the challenge what to remake loadstring not call it from another function.
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:10 PM |
wait what not reffering to- !!@@#$ dammit i failed
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:11 PM |
| Not only are you referring to g several times in your script (an infringement upon the rules), but that does not even come close to being a resolution to the challenge. |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:15 PM |
| Challenge: Show clonetrooper how do fix his code that is way beyond most brains... |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:21 PM |
um clonetrooper = 2pro4me
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:21 PM |
| My challenge still stands. |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:21 PM |
| make me a script to create a new server |
|
|
| Report Abuse |
|
|
|
| 10 May 2015 11:48 PM |
all of these are too hard dammit
Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
ImSnipy
|
  |
| Joined: 08 Feb 2015 |
| Total Posts: 30 |
|
|
| 11 May 2015 12:17 AM |
Lets see if you can solve this, its mathematics btw:
You have 3 unknown values in a table, you want to sort them from least to greatest without using the command "Sort.Table", btw the values are unknown numbers. |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 01:05 AM |
so like this? local num1 = math.random(1,3) local num2 = math.random(1,3) local num3 = math.random(1,3) local stuff = {num1, num2, num3}
easy
if num1 >= num2 and num1 >= num3 and num2 >= num3 then stuff[num1] = 1 stuff[num2] = 2 stuff[num3] = 3 elseif -- you get the idea what im gonna do end Save the plants! Plants > animals! |
|
|
| Report Abuse |
|
|
| |
|
ImSnipy
|
  |
| Joined: 08 Feb 2015 |
| Total Posts: 30 |
|
| |
|
eLunate
|
  |
| Joined: 29 Jul 2014 |
| Total Posts: 13268 |
|
|
| 11 May 2015 01:22 AM |
Eternal,
for k,v in next,getfenv(0) do if #k == 1 then print(v) end end |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 11 May 2015 01:30 AM |
| Still referring to g HAHAH u lose |
|
|
| Report Abuse |
|
|
eLunate
|
  |
| Joined: 29 Jul 2014 |
| Total Posts: 13268 |
|
|
| 11 May 2015 01:50 AM |
Oh noes
If I run his code on a Roblox server, I can get the value by opening a new one and doing print(math.random(1,1000000))
Think outside the box. And then make it fluffy. |
|
|
| Report Abuse |
|
|
eLunate
|
  |
| Joined: 29 Jul 2014 |
| Total Posts: 13268 |
|
|
| 11 May 2015 01:52 AM |
print(select(2,next(getfenv(0),script)))
Worth a shot too. |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 11 May 2015 01:56 AM |
| Lucky it was a global variable D: |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 02:00 AM |
g=math.random(1,1000000)
-- get all possible g's t={} for i=1, 1000000 do t[i] = i end
-- print all possible g's including the actual g print(unpack(t))
-- ^_^ |
|
|
| Report Abuse |
|
|
cntkillme
|
  |
| Joined: 07 Apr 2008 |
| Total Posts: 44956 |
|
|
| 11 May 2015 02:04 AM |
| That is definitely not going to work but good try :) |
|
|
| Report Abuse |
|
|