Page 26 of 65

Posted: Sun Sep 08, 2013 08:39
by Dan Duncombe
Dragon95 wrote:As first I have download the lastest dev version from minetest on github and compiled it. Then I have make a folder in the games sektion of the minetest compilation and create there a secound new folder how called mods now I have copy all mods and his depencies in this older in the same folder system which they are on the technic github page.now i have make a .conf file in the folder who are the mods folder is and wrote in "name = technik".now when you start the game you must have a grey field under the controll window who called technic and now it must normaly work.
I hope this helps you
You made an entire new gamemode? If so, why not just download the technic game?

Posted: Sun Sep 08, 2013 11:44
by Dragon95
at first download the newest minetest dev and compile it. Then download the technic game pack and put them unzipped in the games folder. then you download all mods from how are a folder there but an emty folder. put them unzipped in the empty folder now i must work

Dan Duncombe: I don't know about a technic game before you tell me from it it makes a lot easier thanks

Posted: Sun Sep 08, 2013 13:11
by Dan Duncombe
Dragon95 wrote:at first download the newest minetest dev and compile it. Then download the technic game pack https://github.com/RealBadAngel/technic_game(its not from me) and put them unzipped in the games folder. then you download all mods from how are a folder there but an emty folder. put them unzipped in the empty folder now i must work

Dan Duncombe: I don't know about a technic game before you tell me from it it makes a lot easier thanks
Technic Game

Posted: Sun Sep 08, 2013 23:22
by knut
I made this airframe that you steer using a screwdriver to reorient a frame motor. What a nice addition to this mod would be "frame rotators" that turn 90 dregrees a connected frame. Horizontal clockwise and counter cw, and vertical the same. For a left rotation, each block in the frame would be turned as with a screwdriver in mode 1, and then displaced n blocks sideways, right if its behind the rotator or left if it is in front of it, and then forward or backwards n blocks again, n being the distance to the rotator (that would be zero for the same vertical axis). Do you think it would be possible? Does MC have something like that?

Posted: Mon Sep 09, 2013 02:01
by BrandonReese
knut wrote:I made this airframe that you steer using a screwdriver to reorient a frame motor. What a nice addition to this mod would be "frame rotators" that turn 90 dregrees a connected frame. Horizontal clockwise and counter cw, and vertical the same. For a left rotation, each block in the frame would be turned as with a screwdriver in mode 1, and then displaced n blocks sideways, right if its behind the rotator or left if it is in front of it, and then forward or backwards n blocks again, n being the distance to the rotator (that would be zero for the same vertical axis). Do you think it would be possible? Does MC have something like that?
That's really clever

Posted: Mon Sep 16, 2013 03:06
by derpswa99
Simplified technic? Anyone? Hello.... anyone?

Posted: Mon Sep 16, 2013 23:55
by feromonas
can you please tell me how to install and what are the mods

Posted: Thu Sep 19, 2013 13:35
by webdesigner97
The recipe of the windmill frame is the same as in my StreetsMod's steelsupport:

https://github.com/webdesigner97/street ... it.lua#L13

Posted: Thu Sep 19, 2013 22:50
by VanessaE
Webdesigner, perhaps add recipes to cross-convert between the two?

Better would be to allow the windmill to use streets steel support objects in addition to technic's.

Posted: Fri Sep 20, 2013 11:11
by webdesigner97
VanessaE wrote:Webdesigner, perhaps add recipes to cross-convert between the two?

Better would be to allow the windmill to use streets steel support objects in addition to technic's.
1: What cross-convert? I don't understand :D

2: Maybe yes, but I wonder why this is needed at all. I'm building a windmill in medieval style and want to produce energy to make bread. But the frames look bad in it :/

Posted: Fri Sep 20, 2013 15:59
by sicmind
ok so i have technics installed and all the dependcies also...but anytime i enable the subcat of technics..(the one i want the most) i get an error saying it cant find it....it will run everything else but not the exctual technic folder.

Posted: Fri Sep 20, 2013 22:15
by deivan
The workshop don't is working here. Is idle and after I put a tool he become "unpowered". :-o

Posted: Fri Sep 20, 2013 23:07
by VanessaE
you know, something like:

Code: Select all

minetest.register_craft({
    output = "streets:steel_support 4",
    recipe = {
        { "technic:wind_mill_frame", "technic:wind_mill_frame" },
        { "technic:wind_mill_frame", "technic:wind_mill_frame" }
    }
})

minetest.register_craft({
    output = "technic:wind_mill_frame 4",
    recipe = {
        { "streets:steel_support", "streets:steel_support"},
        { "streets:steel_support", "streets:steel_support"}
    }
})
In these recipes, four of either type of frame placed in a square produces four of the opposite type. This example is untested but should work as-is.

Posted: Fri Sep 20, 2013 23:11
by VanessaE
Sicmind: please do the following: Close the game if you have it open. Find and delete "debug.txt". Start the game. Make the problem happen again. Close the game. Find the new debug.txt that should have been created.

GO TO pastebin.com and copy & paste the new debug.txt to that site. Hit the submit button and give us the link from your address bar when the new page is done loading (it will be of the form, http:// pastebin.com/some_gibberish_here). Do not paste the actual debug text here, it's too big.

Posted: Sat Sep 21, 2013 09:10
by webdesigner97
VanessaE wrote:you know, something like:

Code: Select all

minetest.register_craft({
    output = "streets:steel_support 4",
    recipe = {
        { "technic:wind_mill_frame", "technic:wind_mill_frame" },
        { "technic:wind_mill_frame", "technic:wind_mill_frame" }
    }
})

minetest.register_craft({
    output = "technic:wind_mill_frame 4",
    recipe = {
        { "streets:steel_support", "streets:steel_support"},
        { "streets:steel_support", "streets:steel_support"}
    }
})
In these recipes, four of either type of frame placed in a square produces four of the opposite type. This example is untested but should work as-is.
Oh, ok :D thx!

Posted: Sat Sep 21, 2013 10:10
by Nore
deivan wrote:The workshop don't is working here. Is idle and after I put a tool he become "unpowered". :-o
The tool workshop is now a MV machine.

Posted: Sat Sep 21, 2013 16:31
by deivan
To bad, understood.

Posted: Sat Sep 21, 2013 17:04
by sicmind
VanessaE wrote:Sicmind: please do the following: Close the game if you have it open. Find and delete "debug.txt". Start the game. Make the problem happen again. Close the game. Find the new debug.txt that should have been created.

GO TO pastebin.com and copy & paste the new debug.txt to that site. Hit the submit button and give us the link from your address bar when the new page is done loading (it will be of the form, http:// pastebin.com/some_gibberish_here). Do not paste the actual debug text here, it's too big.
ok i will do that thanks

Posted: Sun Sep 22, 2013 17:55
by deivan
I need a machine to convert between LV/MV/HV. With some loses, like 20 LV-> 5 MV -> 1 HV (1HV -> 4 MV -> 15 LV). :-o

Posted: Sun Sep 22, 2013 18:54
by Sokomine
devian wrote: I need a machine to convert between LV/MV/HV. With some loses, like 20 LV-> 5 MV -> 1 HV (1HV -> 4 MV -> 15 LV). :-o
That machine is called "supply converter".

Posted: Sun Sep 22, 2013 23:11
by deivan
Thanks.

Posted: Wed Sep 25, 2013 17:03
by sicmind
sicmind wrote:
VanessaE wrote:Sicmind: please do the following: Close the game if you have it open. Find and delete "debug.txt". Start the game. Make the problem happen again. Close the game. Find the new debug.txt that should have been created.

GO TO pastebin.com and copy & paste the new debug.txt to that site. Hit the submit button and give us the link from your address bar when the new page is done loading (it will be of the form, http:// pastebin.com/some_gibberish_here). Do not paste the actual debug text here, it's too big.


http://pastebin.com/2mPYsLCa here is link to the debug from when i try to run technics

ok i will do that thanks

Posted: Wed Sep 25, 2013 19:29
by ShadowNinja
You need a very recent build of Minetest from git to use the master branch. Minetest stable and old git versions won't work.
Either update your version of Minetest or use the version of technic in the "stable" branch. (See the link in the first post)

Posted: Sat Sep 28, 2013 22:31
by sicmind
Shadow wrote:
You need a very recent build of Minetest from git to use the master branch. Minetest stable and old git versions won't work.
Either update your version of Minetest or use the version of technic in the "stable" branch. (See the link in the first post)
thanks

Posted: Fri Oct 04, 2013 20:16
by ShadowNinja
Nice Hybrid Dog.
Could you possibly make a pull request on technic with this?
Edit: And use the vector helpers. Eg, vector.round(pos).