Minetest Startup Helper[abandoned]

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

Minetest Startup Helper[abandoned]

by bcnjr5 » Thu May 17, 2012 14:57

I am making a helpful launcher that performs common tasks that new users may find hard to do (like running a server without being in the level) for Minetest. THIS WORKS BUT IS UNDER DEVELOPMENT.
Linux version is coming.

Simply save the file to the bin folder in your minetest directory and run it instead of minetest.exe.

Click your OS.
Windows: http://www.mediafire.com/download.php?v1snp6bmbxzhy6h (0.2)
Linux (not finished)

Image
Last edited by bcnjr5 on Sun May 27, 2012 20:58, edited 1 time in total.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu May 17, 2012 15:01

Thanks, will try this sometime.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Thu May 17, 2012 15:04

... That was fast...
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu May 17, 2012 15:05

We could do with some screenshots you know, good thing I am using Linux.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu May 17, 2012 16:30

Command-line, at first it seems like it is a GUI like MC.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Thu May 17, 2012 16:36

Could you convert it to a bash file?
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu May 17, 2012 16:44

I am new to bash, but trying is the only to do things so maybe, have not decided, but I am busy with Marktraceur over setting a server up for something.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Thu May 17, 2012 16:50

Okay, I tried to do it on my own but bash does not have redirections like

:loop
goto loop

so I am stuck for now.
 

User avatar
Calinou
Member
 
Posts: 3124
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou

by Calinou » Thu May 17, 2012 16:59

...what does it do? You should really add a feature list.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu May 17, 2012 17:19

Bash is not crappy Windows commands, (sorry about that, pardon my French) you have to learn it fully to understand it.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Thu May 17, 2012 19:30

I am pretty sure that if you open up the Windows batch file in a linux text editor you can get the general gist of it. You have to remember that the linux version is being scripted on a Windows computer using notepad, I can not test the file and have no idea if it works.
Last edited by bcnjr5 on Thu May 17, 2012 19:30, edited 1 time in total.
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Wed May 23, 2012 18:35

bcnjr5 wrote:Okay, I tried to do it on my own but bash does not have redirections like

:loop
goto loop

so I am stuck for now.

You can use a while loop:
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
while [ condition ]
do
   command1
   command2
   command3
done

You can use true as condition if you want an infinite loop:
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
while [ true ]
do
   command1
   command2
   command3
done

If you want to learn more about bash, just google...
:D
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Wed May 23, 2012 19:42

Already tried.
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Wed May 23, 2012 21:18

bcnjr5 wrote:Already tried.

And?
:D
 

User avatar
bcnjr5
Member
 
Posts: 67
Joined: Wed Apr 25, 2012 16:08

by bcnjr5 » Wed May 23, 2012 22:10

Failed.
 

User avatar
LolManKuba
Member
 
Posts: 939
Joined: Fri Feb 10, 2012 22:36

by LolManKuba » Mon Jun 04, 2012 00:30

Fake BBCode - [offtopic]Sometimes I accidently mix you you up with bgsmithjr[/offtopic]
 

User avatar
sdzen
Member
 
Posts: 1170
Joined: Fri Aug 05, 2011 22:33

by sdzen » Mon Jun 04, 2012 20:16

to add to that i sometimes mistake him for bcmpinc
[h]Zen S.D.[/h] The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno
 


Return to Minetest Engine

Who is online

Users browsing this forum: No registered users and 9 guests

cron