Page 1 of 1

Looking for a partner

PostPosted: Wed Nov 26, 2014 12:06
by indriApollo
Hi fellow developers,

Today I'm looking for a partner willing to work on minetest mods with me.
I usually do everything on my own (shy/introvert u know) but that's time expensive and it forces me to learn a lot of stuff on my own.
So now i grow out of my shell and ask for help :D

About me:
I'm a 18 years old IT-student (Embedded devices) from Belgium. I've already followed programming and network courses for 2 years. Those include html, css, javascript,php,8051assembly and c/c++ (only since a few months) .

I'm also learning lua to play around with the minetest api :)

Who I'm looking for:
- You know lua, or you're still learning but you've already programmed in your life
- You can communicate in english/french/dutch
- You're a nice person (veeeeeery important) :D
- You can tolerate my spaghetti code (and/or show me how to correct it)
- You are regularly available via irc

That's it, I hope someone is willing to work with me :)

My github
Project I'm working on right now
My (old) website

Re: Looking for a partner

PostPosted: Wed Nov 26, 2014 13:53
by srifqi
indriApollo wrote:Hi fellow developers,

Hello!

indriApollo wrote:About me:
I'm a 18 years old IT-student (Embedded devices) from Belgium. I've already followed programming and network courses for 2 years. Those include html, css, javascript,php and c/c++ (only since a few months) .

OK

indriApollo wrote:I'm also learning lua to play around with the minetest api :)

Me too!

indriApollo wrote:Who I'm looking for:
- You know lua, or you're still learning but you've already programmed in your life - YES
- You can communicate in english/french/dutch - YES (English)
- You're a nice person (veeeeeery important) :D - Absolutely yes!
- You can tolerate my spaghetti code (and/or show me how to correct it) - READY
- You are regularly available via irc - Oh man... NOT (very rarely)


After answering your question, let me introduce myself:
I'm 14-years old from Indonesia (see my signature). I've learned HTML, CSS, JS, PHP (a little bit), and Lua (of course) by myself.

How about it indriApollo?

Re: Looking for a partner

PostPosted: Wed Nov 26, 2014 18:43
by Krock
Hi.
I'm not sure what to say in such topics, so I'll just answer the "questions".
indriApollo wrote:Who I'm looking for:
- You know lua, or you're still learning but you've already programmed in your life
- You can communicate in english/french/dutch
- You're a nice person (veeeeeery important) :D
- You can tolerate my spaghetti code (and/or show me how to correct it)
- You are regularly available via irc

- Yes!
- Yes, 2 of them.
- No, hated by everyone.
- I love spaghetti but they're not useful in codes, so: No!
- Yes, like an addict.

Looks not like a partnership4ever thing.

Re: Looking for a partner

PostPosted: Thu Nov 27, 2014 09:22
by indriApollo
Thanks for your answers srifqi and Krock.
The thing is, I'm working on a survivalgames mini game where I need player inventory saving/restoring, area protections and other stuff that I don't know and I was hoping for someone that could help me for that :)

Re: Looking for a partner

PostPosted: Thu Nov 27, 2014 09:52
by philipbenr
Sorry I can't help you too much. I am learning myself. Still, I might drop in if I know somethings. Post some problems of yours in this thread as well as on irc, and I'll probably answer it.

Re: Looking for a partner

PostPosted: Thu Nov 27, 2014 14:02
by indriApollo
Thanks philipbenr :)

To save the inventories, I dump an array in a text file and read it later to restore it to the player. Is that the good way to do this ? I wrote some untested code :
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
-- SAVE
local conf_file = io.open(arena_path.."/inventories/"..name.."_inv.txt","w")
local inv = player:get_inventory()
conf_file:write( dump(inv:get_list("main")) )
io.close(conf_file)

-- RESTORE
local inv = player:get_inventory()
local player_old_inv = dofile(arena_path.."/inventories/"..name.."_inv.txt")
inv:set_list("main",player_old_inv)


I also need a way to protect a hole area given by 2 pos and a way to randomly fill chests with content given in a conf file (with max count and chance)

To clarify, I try to reproduce the basic features of this bukkit minigame

Re: Looking for a partner

PostPosted: Fri Nov 28, 2014 12:02
by pandaro
indriApollo wrote:Hi fellow developers,

Today I'm looking for a partner willing to work on minetest mods with me.



what is your goal mod(s)?

About me:
lua studied by myself.
not much more to say.

Re: Looking for a partner

PostPosted: Fri Nov 28, 2014 12:39
by indriApollo
indriApollo wrote:To clarify, I try to reproduce the basic features of this bukkit minigame

Re: Looking for a partner

PostPosted: Tue Dec 16, 2014 19:01
by Hybrid Dog
indriApollo wrote:Who I'm looking for:
- You know lua, or you're still learning but you've already programmed in your life
- You can communicate in english/french/dutch
- You're a nice person (veeeeeery important) :D
- You can tolerate my spaghetti code (and/or show me how to correct it)
- You are regularly available via irc

- l only made a few minetest mods
- l'm bad in communication
- no, l'm playing griefing
- l like spaghetti code
- currently, no

Re: Looking for a partner

PostPosted: Tue Dec 16, 2014 19:09
by indriApollo
Well we are entering the exam time so I'll probably leave this mod until late january.