Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

'Infinite mining' and preventing overlapping?

Asked by
Dummiez 360 Moderation Voter
11 years ago

Alright, so I decided to work on a pickaxe that basically generates new blocks when the previous block is destroyed, creating an 'infinite mine' effect. If you ever heard of, or played the game Epic Mining 2 by Piedude777, his is able to detect whether that area has already been mined.

01-- This is a portion of the script that handles generation of dirt.
02 
03function onMouseButton1Down(mouse)
04 
05-- Target, Surface selection and storage (shortened).
06 
07local target = mouse.Target
08local surface = mouse.TargetSurface
09local dirt = game.ReplicatedStorage.Dirt
10 
11local a,b,c,d,e = dirt:Clone(), dirt:Clone(), dirt:Clone(), dirt:Clone(), dirt:Clone() -- such mess
12a.Parent, b.Parent, c.Parent, d.Parent, e.Parent = Workspace, Workspace, Workspace, Workspace, Workspace
13 
14-- Checking mouse target and generate according to where they clicked.
15 
View all 35 lines...

I'm trying to get that same effect in this, any ideas on how I could do that? (Basically not generating new blocks over areas where the block has been mined.)

1 answer

Log in to vote
2
Answered by 11 years ago

in Workspace you need a RBXAPI/RBXAPIServer/OnMined

ServerScriptService you need:

001local rbxapi    = require(workspace.RBXAPI)
002local storage   = game:GetService("ServerStorage")
003local minerals  = {}
004local mineral_count = 0
005local mineral_probability = {
006    {"Grass"},
007    {"Dirt"},
008    {"Dirt", "Dirt", "Dirt", "Coal", "Dirt", "Sand", "Dirt", "Dirt", "Dirt", "Stone", "Stone"},
009    {"Dirt", "Coal", "Dirt", "Dirt", "Dirt", "Stone", "Stone"},
010    {"Coal", "Dirt", "Dirt", "Copper", "Dirt", "Stone", "Stone", "Stone"},
011    {"Gold", "Iron", "Iron", "Stone", "Stone", "Coal", "Coal", "Dirt", "Dirt", "Sand", "Copper", "Stone", "Stone"},
012    {"Gold", "Iron", "Iron", "Stone", "Stone", "Coal", "Coal", "Dirt", "Dirt", "Sand", "Copper", "Stone", "Stone", "Gold", "Ruby"},
013    {"Gold", "Iron", "Iron", "Stone", "Stone", "Coal", "Coal", "Dirt", "Dirt", "Sand", "Copper", "Stone", "Stone", "Emerald", "Gold", "Gold", "Ruby"},
014    {"Gold", "Iron", "Gold", "Stone", "Coal", "Coal", "Stone", "Copper", "Copper", "Emerald", "Gold", "Ruby", "Ruby", "Ruby", "Emerald", "Stone", "Stone", "Stone", "Stone"},
015    {"Gold", "Iron", "Gold", "Stone", "Coal", "Coal", "Stone", "Copper", "Copper", "Emerald", "Gold", "Ruby", "Ruby", "Ruby", "Emerald", "Stone", "Stone", "Stone", "Stone"},
View all 182 lines...

In ServerStorage you need:

12 Bricks with a Type value in them. Named Mineral

In sound Service you need A bunch of sounds revlant to the script.

For screen GUi there is the model in my models I will have.

And that is the whole thing for a mining game.

Ad

Answer this question