[Game] Overcraft Origins [overcraft_origins] – Minecraftlike

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

jojoa1997 wrote:
SAMIAMNOT wrote:Anyone know where to find ingredients? We don't know how to craft anything on 2x2. Except Wooden Planks. Also why is there an absence of a real Creative Mode?
Ohhh good question. Um let me look in my code. I have forgotten cause I do not play Minetest too much any more. I have to find the exact wording of the command.
So here https://github.com/jojoa1997/overcraft_ ... #L202-L222 is the command. Pretty much in when creative is selected on the main menu then you have to do "/gamemode 1" or "/gamemode c" to enable creative mode. I tried to make it very similar to minecraft.

Code: Select all

minetest.register_chatcommand('gamemode',{
	params = "1, c | 0, s",
	description = 'Switch your gamemode',
	privs = {gamemode = gm_priv},
	func = function(name, param)
		if param == "1" or param == "c" then
			playerdata[name]['gamemode'] = "Creative"
			save_player_data()
			minetest.chat_send_player(name, 'Your gamemode is now: '..playerdata[name]['gamemode'])
			updategamemode(name)
		elseif param == "0" or param == "s" then
			playerdata[name]['gamemode'] = "Survival"
			save_player_data()
			minetest.chat_send_player(name, 'Your gamemode is now: '..playerdata[name]['gamemode'])
			updategamemode(name)
		else
			minetest.chat_send_player(name, "Error: That player does not exist!")
			return false
		end
	end
})
That doesnt work. Theres also a search button that doesnt work.
I test mines.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

ok type what I put in " " but not the actualy " "
"/grant singleplayer gamemode"
"/gamemode s" survival
"/gamemode c" creative
The 1 is also c and 0 is also s
Coding;
1X coding
3X debugging
12X tweaking to be just right

CheerfulCherub
Member
Posts: 59
Joined: Sat Jan 25, 2014 23:03

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by CheerfulCherub » Post

Thank-you for your help, it worked and now I am playing this again, and Thank-you for making this game, it's awesome game.

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

Thanks! Like the bigger menu.
I test mines.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

I am actually considering continuing with this sub_game but it will take a while because I have to update all the mods that I used.
Coding;
1X coding
3X debugging
12X tweaking to be just right

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

How do you go back to the full inventory? I can only have like 8 things.
I test mines.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

SAMIAMNOT wrote:How do you go back to the full inventory? I can only have like 8 things.
Try using the buttons. I don't remember the exact layout but I think it says survival.
Coding;
1X coding
3X debugging
12X tweaking to be just right

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

Okay but then do I have to type in that creative ©®@p?
I test mines.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

Great news. I finally started updating. I have updated the 3d_armor mod and made the inventories better. See the got for updates and downloads.
Coding;
1X coding
3X debugging
12X tweaking to be just right

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

Good thanks.
Just one question. Why do less mods work in Overcraft than in Minetest?
I test mines.

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

SAMIAMNOT wrote:Good thanks.
Just one question. Why do less mods work in Overcraft than in Minetest?
That is because 1) I coded it ;-) and 2) it is mostly customized and most of the code was edited.
Coding;
1X coding
3X debugging
12X tweaking to be just right

Joz
Member
Posts: 41
Joined: Fri Oct 25, 2013 21:37

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by Joz » Post

Hey, do you plan to integrate a nether mod? And zombies and creepers? Peaceful Mobs would be very nice.
And I want also to propagate my railway-corridors mod: viewtopic.php?f=11&t=10225 ;)

User avatar
jojoa1997
Member
Posts: 2890
Joined: Thu Dec 13, 2012 05:11
Location: Earth

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by jojoa1997 » Post

Joz wrote:Hey, do you plan to integrate a nether mod? And zombies and creepers? Peaceful Mobs would be very nice.
And I want also to propagate my railway-corridors mod: viewtopic.php?f=11&t=10225 ;)
I actually just saw your mod and am thinking about adding it when I start working on this again. School is not giving me very much time to do anything. Also I am waiting till later to add mobs because they cause lag and I have not seena good nether mod yet. If you have suggestions for those I would be grateful.
Coding;
1X coding
3X debugging
12X tweaking to be just right

User avatar
SAMIAMNOT
Member
Posts: 416
Joined: Wed Sep 03, 2014 00:51
In-game: notanewbie
Location: Desert

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by SAMIAMNOT » Post

I love this game.
Since you are trying to make this look like Minecraft can you please add Crafting by BlockMen? http://forum.minetest.net/viewtopic.php?f=11&t=5641
I test mines.

4aiman
Member
Posts: 1208
Joined: Mon Jul 30, 2012 05:47

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by 4aiman » Post

Jojoa1997, do you plan to continue to develop OO any time soon?

User avatar
AgentNagel42
Member
Posts: 33
Joined: Tue Sep 09, 2014 15:41
In-game: AgentNagel42

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by AgentNagel42 » Post

Hey I could retexture my beacons mod to make it MCish for this if you want
My Youtube Channel "NoobsPlayGames": https://www.youtube.com/channel/UCaqGwT ... j_qpqNTyOQ

seller
Member
Posts: 37
Joined: Sat Aug 05, 2017 16:31
In-game: seller bombingspree lockerhead5000 blob5000 thediamondfighter
Location: in a hose

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by seller » Post

me gona check zis out

User avatar
fstltna
Member
Posts: 128
Joined: Sat Aug 05, 2017 23:22
GitHub: fstltna
IRC: MarisaG
In-game: MarisaG
Location: South San Francisco, CA
Contact:

Re: [Game] Overcraft Origins [overcraft_origins] – Minecraft

by fstltna » Post

Where is the link to download the latest version?
-- Never mind, I pulled it from the GIT repo. However I have a new issue:

Code: Select all

2017-08-24 06:24:32: ERROR[Main]: ServerError: AsyncErr: environment_Step: Runtime error from mod 'factions' in callback environment_Step(): Mod security: Blocked attempted write to /root/minetest/bin/../games/overcraft_origins/mods/factions/factions.txt
I get this when I try and log into the server and the server crashes...
---- https://MineCity.online - Fan site for Minetest - get Minetest Hosting with first month FREE & $14/month after that
---- https://discord.gg/Bd4Xw9c - Minecity Discord Server - Join today!
---- http://MineCity.online:2000 - Get a free @minecity.online email address

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests