Jump to content


Felype's Content

There have been 52 items by Felype (Search limited from 10-February 22)


By content type

See this member's


Sort by                Order  

#179721 Word chain

Posted by Felype on 20 May 2014 - 11:46 PM in Forum Games

Antartica



#175967 Guess Who's Below

Posted by Felype on 30 April 2014 - 07:34 PM in Forum Games

No.
_gjkf_



#175966 Hurt/Heal Top Twenty Posters

Posted by Felype on 30 April 2014 - 07:31 PM in Forum Games

Hurt oeed, heal Luanub

Spoiler



#173567 [CC 1.6] CoderCraft

Posted by Felype on 15 April 2014 - 02:22 PM in Servers

R.I.P



#171188 [CC 1.6] CoderCraft

Posted by Felype on 02 April 2014 - 03:16 AM in Servers

View PostChain99, on 02 April 2014 - 02:59 AM, said:

Did you really reset the map with no spawn or is this just a terrible april fools joke?
i hope it as a april fools joke.



#171165 [CC 1.6] CoderCraft

Posted by Felype on 02 April 2014 - 12:34 AM in Servers

View Postsillyjake, on 02 April 2014 - 12:31 AM, said:

View PostFelype, on 02 April 2014 - 12:30 AM, said:

Can't reach server.
APRIL FOOLS!
What?



#171162 [CC 1.6] CoderCraft

Posted by Felype on 02 April 2014 - 12:30 AM in Servers

Can't reach server.



#170939 [CC 1.6] CoderCraft

Posted by Felype on 31 March 2014 - 11:14 PM in Servers

View Postsillyjake, on 31 March 2014 - 11:03 PM, said:

View Postoeed, on 31 March 2014 - 02:48 AM, said:

View Postsillyjake, on 31 March 2014 - 12:46 AM, said:

For those who can't log on: Download opencomputers. I just added it.

EDIT: Don't I just removed it.

Why did you remove it?

I'd quite like to try it out.
People complained about lag.
Mine game is crashing with Open Sensors

Removed it.



#170662 [CC 1.6] CoderCraft

Posted by Felype on 30 March 2014 - 04:28 PM in Servers

Does anyone know what happened?



#170651 [CC 1.6] CoderCraft

Posted by Felype on 30 March 2014 - 03:49 PM in Servers

Awesome server,but i cant connect: "Connection refused: connect". too



#166811 Periodic-table

Posted by Felype on 03 March 2014 - 09:02 PM in Programs

Wow,nice work.



#164930 Free Webhosters

Posted by Felype on 14 February 2014 - 07:29 PM in General

3jelly.



#161215 Forum Suggestions

Posted by Felype on 19 January 2014 - 09:40 PM in Forum Discussion

View PostLyqyd, on 19 January 2014 - 08:50 PM, said:

The Media section would be the correct place to post maps and textures. Check out the IRC for a place to chat with other ComputerCraft users. Desktop notifications are infeasible unless the forum supports email notifications. I can't recall if it does or not.
Oh and can i ask a question? like 99% of the forums i visit have the same style of this,this style is a style offered by a certain hosting or it is for download in internet?



#161208 Forum Suggestions

Posted by Felype on 19 January 2014 - 08:05 PM in Forum Discussion

But in the chat you can find new people.
About Desktop Notifications i've already seen a lot of sites that use desktop notifications without plugins

And about the forums a map and textures forums will be more "organizated"



#161197 Forum Suggestions

Posted by Felype on 19 January 2014 - 06:00 PM in Forum Discussion

Hello,i have some forum suggestions

-Maps Forum (theres no forum for maps here,and i doing a map and dont know where to post it.)
-Textures Forum

And i got some random suggestions too:

-Chat (will be cool a place to talk with other users.)
-Desktop Notifications Support(it will be cool too,when anyone post in your topic a desktop notification pop-up)

Ok this has my simple suggestions.



#161100 if question.

Posted by Felype on 18 January 2014 - 07:18 PM in Ask a Pro

View Posttheoriginalbit, on 18 January 2014 - 10:43 AM, said:

View PostFelype, on 18 January 2014 - 09:51 AM, said:

THe loop will be like a screensaver with ASCII Art but when u press L it will leave the screensaver.
post up your code so far so we can give you advice and specific help on how to do this
--I will not create a cool screensaver in this code this code is only to show what i know.
repeat
term.clear()
print("O  ")
sleep(2)
term.clear()
print(" O")
until
--I Dont know where to put this \/
while true do
local event, param = os.pullEvent()
if event == "L"
os.shutdown()
end
end



#161035 if question.

Posted by Felype on 18 January 2014 - 09:51 AM in Ask a Pro

View PostBomb Bloke, on 17 January 2014 - 10:57 PM, said:

That depends on what the loop's doing.
THe loop will be like a screensaver with ASCII Art but when u press L it will leave the screensaver.



#161004 if question.

Posted by Felype on 17 January 2014 - 10:32 PM in Ask a Pro

Ok last question how to make the user press a key to stop a loop without parallels api?



#161002 if question.

Posted by Felype on 17 January 2014 - 10:17 PM in Ask a Pro

View Posttheoriginalbit, on 17 January 2014 - 10:09 PM, said:

this is where indenting helps.

write("Senha: ")
a = read()
if a == "random" then
  print("mensage")
  if a == "random2" then
	print("potato")
  end
else
  print("Bye bye")
  sleep(2)
  os.shutdown()
end

what you meant to do was make the next check an elseif

write("Senha: ")
a = read()
if a == "random" then
  print("mensage")
elseif a == "random2" then
  print("potato")
else
  print("Bye bye")
  sleep(2)
  os.shutdown()
end
Oh ok thanks but i can add unlimited elseifs?



#161000 if question.

Posted by Felype on 17 January 2014 - 09:59 PM in Ask a Pro

Whats wrong with my code? (sorry for noob question)
If i type random2 it runs the else code.
write("Senha: ")
a = read()
if a == "random" then
print("mensage")
if a == "random2" then
print("potato")
end
else
print("Bye bye")
sleep(2)
os.shutdown()
end



#160983 Does anyone know a FTP Program?

Posted by Felype on 17 January 2014 - 07:31 PM in General

View Postlukeplechaty, on 11 January 2014 - 12:44 PM, said:

you can try my one http://pastebin.com/PXNNsVVx it works all in one program run it to get files eg(ftp) run it with the pc ID you are sending it to and file name at the end eg(ftp 1 file)
Not perfect but i liked it i will probably use it,but i want a FTP program that have a program for the server and for the client.



#159768 Does anyone know a FTP Program?

Posted by Felype on 08 January 2014 - 02:04 PM in General

But they have some bugs.



#159758 Does anyone know a FTP Program?

Posted by Felype on 08 January 2014 - 01:00 PM in General

Ehh i want a Computercraft program and i already seen some Ftps programs.



#159693 My OS

Posted by Felype on 07 January 2014 - 08:58 PM in General

 oeed, on 07 January 2014 - 08:45 PM, said:

 Felype, on 07 January 2014 - 08:37 PM, said:

 tesla1889, on 07 January 2014 - 08:35 PM, said:

why mimic such a horribly-designed OS? unix is much more reliable, safe, and powerful
Its computercraft OS.
What he's saying is why base it off Windows, a "horribly-designed OS". I've found that basing your OS off an existing OS doesn't work too well, especially when dealing with windows (as in a on screen window, not the OS). It's completely up to you obviously, but I'd try to think about what features would be really useful and make an interface which works well with them. I'd also only make one OS, it's better to make 1 OS you've spent four weeks on than 4 OSs you spent a few days on each.

As with everything, but especially with OSs, attention to detail is vital. The best programs and OSs are the ones which the creator has put the most time and care in to. For example, I started my current OS in about mid-Novemeber and I've spent a good portion of my free time on it. As a result I feel that it's very solid and far better than my previous OS. Anyway, enough plugging. Have fun!
Ok but which of these ideas you find most interesting?



#159692 Does anyone know a FTP Program?

Posted by Felype on 07 January 2014 - 08:55 PM in General

I searched trough the forum and i dont find a working FTP program,do u know a FTP Program that works?