I wish I had a better computer.
Edit: damn ninjas!
Granted, you are now a more skilled artist, but just a little.
I wish I had a better computer.
There have been 177 items by MysticT (Search limited from 10-February 22)
Posted by
MysticT
on 26 March 2013 - 03:19 AM
in
Forum Games
Posted by
MysticT
on 25 March 2013 - 09:59 AM
in
Forum Games
Posted by
MysticT
on 22 March 2013 - 07:06 AM
in
Forum Games
Posted by
MysticT
on 09 August 2013 - 12:08 PM
in
Peripherals and Turtle Upgrades
wrothmonk, on 09 August 2013 - 08:40 AM, said:
# Configuration file
####################
# block
####################
block {
I:peripherals.block.id=3414
I:peripherals.lan-wire.id=464
}
####################
# general
####################
general {
B:autoAssign=false
B:enableTPSCommand=true
#
S:peripherals.adminPassword=
B:peripherals.enableAdventureMapInterface=true
B:peripherals.enableCraftingAcceleratorComponents=true
B:peripherals.enableCraftingCryptoAccelerator=true
B:peripherals.enableCraftingLANModem=true
B:peripherals.enableCraftingLANWire=true
B:peripherals.enableCraftingMagCardDevice=true
B:peripherals.enableCraftingMagCards=true
B:peripherals.enableCraftingRFIDCards=true
B:peripherals.enableCraftingRFIDReader=true
B:peripherals.enableCraftingRFIDWriter=true
B:peripherals.enableCraftingSpeaker=true
B:peripherals.enableLAN=true
B:peripherals.enableLANSenderSpoofing=true
I:peripherals.rfidTicksPerScan=10
}
####################
# item
####################
item {
I:peripherals.component=28230
I:peripherals.magstripe=10153
I:peripherals.rfid=16230
}
local p = peripheral.wrap("right")
local player = p.getPlayerByName(username)
if player then
print("Player Health: ", player.getHealth())
end
Posted by
MysticT
on 07 April 2013 - 07:54 AM
in
Peripherals and Turtle Upgrades
TableCraft0R, on 07 April 2013 - 07:35 AM, said:
immibis, on 31 August 2012 - 01:52 PM, said:
Posted by
MysticT
on 01 April 2013 - 09:00 AM
in
Forum Games
EmTeaKay, on 01 April 2013 - 06:45 AM, said:
Dlcruz129, on 17 March 2013 - 02:07 PM, said:
spyman68, on 01 April 2013 - 07:39 AM, said:
Posted by
MysticT
on 18 March 2013 - 02:44 AM
in
Forum Games
Smiley43210, on 18 March 2013 - 02:38 AM, said:
Posted by
MysticT
on 02 April 2013 - 04:03 AM
in
Forum Games
Posted by
MysticT
on 07 June 2013 - 02:42 PM
in
APIs and Utilities
cheetah, on 07 June 2013 - 01:07 PM, said:
Posted by
MysticT
on 09 June 2013 - 04:24 PM
in
APIs and Utilities
bunny365, on 09 June 2013 - 02:35 PM, said:
C:\Users\silly_000\Downloads>java -jar launcher.jar no main manifest attribute, in launcher.jar
java -cp ./ccdesk.jar net.deskcc.web.DesktopAppletProxy
Posted by
MysticT
on 01 April 2013 - 08:56 AM
in
APIs and Utilities
spyman68, on 01 April 2013 - 05:05 AM, said:
Posted by
MysticT
on 16 March 2013 - 06:19 AM
in
Suggestions
Posted by
MysticT
on 05 July 2013 - 08:43 PM
in
Forum Games
Posted by
MysticT
on 01 July 2013 - 07:53 AM
in
Forum Games
Posted by
MysticT
on 07 July 2013 - 06:04 PM
in
Forum Games
Posted by
MysticT
on 04 July 2013 - 04:32 PM
in
Forum Games
Posted by
MysticT
on 24 June 2013 - 11:42 AM
in
Forum Games
Posted by
MysticT
on 30 June 2013 - 06:41 PM
in
General
KingOfNoobs, on 30 June 2013 - 06:05 PM, said:
MysticT, on 30 June 2013 - 05:55 PM, said:
KingOfNoobs, on 30 June 2013 - 03:11 PM, said:
table = {"hi", "dude", "hello"}
for i,v in ipairs(table) do
write(v)
if i < #table then write(", ") end
end
I hope you can find and fix the bug!
Posted by
MysticT
on 30 June 2013 - 05:55 PM
in
General
KingOfNoobs, on 30 June 2013 - 03:11 PM, said:
table = {"hi", "dude", "hello"}
for i,v in ipairs(table) do
write(v)
if i < #table then write(", ") end
end
I hope you can find and fix the bug!
Posted by
MysticT
on 25 March 2013 - 09:39 AM
in
APIs and Utilities
Posted by
MysticT
on 30 April 2013 - 02:55 PM
in
Forum Games
Posted by
MysticT
on 30 March 2013 - 04:07 AM
in
Programs
local sDir = "/OS" -- change the sandbox directory here
local function splitPath(sPath)
local i = 1
local t = {}
for path in string.gmatch(sPath, "[^/\\]*[/\\]?") do
path = string.gsub(path, "[/\\]", "")
if path == ".." then
if i > 1 then
i = i - 1
t[i] = nil
else
return nil
end
elseif path ~= "" and path ~= "." then
t[i] = path
i = i + 1
end
end
return t
end
local function resolvePath(sPath)
local t = splitPath(sPath)
if t == nil then
return nil
end
local path = ""
if #t == 0 then
return sDir
end
for _,str in ipairs(t) do
if path == "" then
path = sDir.."/"..str
else
path = path.."/"..str
end
end
return path
end
