Search found 186 matches

by crow
Wed Mar 23, 2011 5:47 pm
Forum: General
Topic: Lua + Sockets + coroutines
Replies: 9
Views: 3230

Re: Lua + Sockets + coroutines

I will be making this in AMS and the exe does not offer threads I hear coroutines or Lans can offer lua like threads. Coroutines could be wrong thing to use I just been reading the ways to have it to work :) I have a way to do it a simple way but its not a free way that offers sockets that don't loc...
by crow
Wed Mar 23, 2011 12:12 pm
Forum: General
Topic: Lua + Sockets + coroutines
Replies: 9
Views: 3230

Re: Lua + Sockets + coroutines

Do you want resources on how to use luasocket with coroutines, or both resources on luasocket and resources on coroutines, separately? Well if you know tuts on both just link them sure they would help and sure it will help others also. As for the long question without any punctuation, Robin your ge...
by crow
Wed Mar 23, 2011 10:40 am
Forum: General
Topic: Lua + Sockets + coroutines
Replies: 9
Views: 3230

Lua + Sockets + coroutines

{Missing} Hey there all' {Missing} anyone ok of a good please to read up on tuts about this? coroutines really confusers me but I need to make a client that is also the server like a p2p where the user logins in there IP is loged a friend logs in that IP is loged then the 2 can connect without the s...
by crow
Wed Mar 23, 2011 10:30 am
Forum: General
Topic: Happy birthday to... aka the birthday topic!
Replies: 80
Views: 25680

Re: Happy birthday to... aka the birthday topic!

BlackBulletIV wrote:Well happy birthday Sir Kittenface! :P
:) thanks BlackBulletIV, another year old :shock: I almost forgot it was my bday this month lol until like the 20th lol :crazy:
by crow
Wed Mar 23, 2011 9:53 am
Forum: General
Topic: Happy birthday to... aka the birthday topic!
Replies: 80
Views: 25680

Re: Happy birthday to... aka the birthday topic!

I was 23 on the 22 of march ya I just copied the bottom of the site where it tells you when its someones bday :awesome:
by crow
Wed Mar 23, 2011 12:47 am
Forum: General
Topic: Happy birthday to... aka the birthday topic!
Replies: 80
Views: 25680

Re: Happy birthday to... aka the birthday topic!

happy bday amnesiasoft
by crow
Tue Mar 22, 2011 11:33 pm
Forum: General
Topic: Happy birthday to... aka the birthday topic!
Replies: 80
Views: 25680

Re: Happy birthday to... aka the birthday topic!

BIRTHDAYS
Congratulations to: crow (23)
by crow
Mon Mar 21, 2011 9:20 pm
Forum: General
Topic: My Site Moko IDE
Replies: 5
Views: 3323

Re: My Site Moko IDE

Update http://mokodev.info/?love=default Could you give this a look over I only completed the home page I think its all OK but hey I am only the creator I would like the people viewing its view on it hehe. Thanks all. Edit: Also could you tell me what you think about the download welcome page I am ...
by crow
Mon Mar 21, 2011 5:55 pm
Forum: General
Topic: My Site Moko IDE
Replies: 5
Views: 3323

Re: My Site Moko IDE

Erös is no long a selene-project, project :) I can't figure out what you mean by that, sorry. Selene-project was the old host where i hosted the details of the app its in the topic for Erös lol its in there somewhere lol Old: http://www.selene-project.co.uk/eroes New: http://mokodev.info :) Hope th...
by crow
Mon Mar 21, 2011 12:18 pm
Forum: Support and Development
Topic: Indexing strings in Lua?
Replies: 14
Views: 5806

Re: Indexing strings in Lua?

Hey I can see what the rest is doing but what is this one doing ?

Code: Select all

function smt.__index(str, key)
  if type(key) == 'number' then
    return string.sub(str, key, key)
  elseif stringMethods[key] then
    return stringMethods[key]
  end
end