Looking for a partner

User avatar
indriApollo
Member
 
Posts: 144
Joined: Fri Sep 26, 2014 11:34
GitHub: indriApollo
IRC: indriApollo
In-game: SudoAptGetPlay

Looking for a partner

by indriApollo » Wed Nov 26, 2014 12:06

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
 

User avatar
srifqi
Member
 
Posts: 508
Joined: Sat Jun 28, 2014 04:31
GitHub: srifqi
IRC: srifqi
In-game: srifqi

Re: Looking for a partner

by srifqi » Wed Nov 26, 2014 13:53

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?
I'm from Indonesia! Saya dari Indonesia!
Terjemahkan Minetest!
Mods by me. Modifikasi oleh saya.

Pronounce my nick as in: es-rifqi (IPA: /es rifˈki/)
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: Looking for a partner

by Krock » Wed Nov 26, 2014 18:43

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.
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
indriApollo
Member
 
Posts: 144
Joined: Fri Sep 26, 2014 11:34
GitHub: indriApollo
IRC: indriApollo
In-game: SudoAptGetPlay

Re: Looking for a partner

by indriApollo » Thu Nov 27, 2014 09:22

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 :)
 

User avatar
philipbenr
Member
 
Posts: 1665
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: WisdomFire or philipbenr

Re: Looking for a partner

by philipbenr » Thu Nov 27, 2014 09:52

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.
 

User avatar
indriApollo
Member
 
Posts: 144
Joined: Fri Sep 26, 2014 11:34
GitHub: indriApollo
IRC: indriApollo
In-game: SudoAptGetPlay

Re: Looking for a partner

by indriApollo » Thu Nov 27, 2014 14:02

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
 

User avatar
pandaro
Member
 
Posts: 266
Joined: Sun Jan 08, 2012 21:34
GitHub: pandaro

Re: Looking for a partner

by pandaro » Fri Nov 28, 2014 12:02

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.
 

User avatar
indriApollo
Member
 
Posts: 144
Joined: Fri Sep 26, 2014 11:34
GitHub: indriApollo
IRC: indriApollo
In-game: SudoAptGetPlay

Re: Looking for a partner

by indriApollo » Fri Nov 28, 2014 12:39

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

Hybrid Dog
Member
 
Posts: 2460
Joined: Thu Nov 01, 2012 12:46

Re: Looking for a partner

by Hybrid Dog » Tue Dec 16, 2014 19:01

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
 

User avatar
indriApollo
Member
 
Posts: 144
Joined: Fri Sep 26, 2014 11:34
GitHub: indriApollo
IRC: indriApollo
In-game: SudoAptGetPlay

Re: Looking for a partner

by indriApollo » Tue Dec 16, 2014 19:09

Well we are entering the exam time so I'll probably leave this mod until late january.
 


Return to Modding Discussion

Who is online

Users browsing this forum: No registered users and 2 guests

cron