help with a game

Hello

I am new to unity and I am learning it kinda fast but I need help with a couple of things
I bought a complete match 3 game from the asset store and I need to see if I can get some help makeing some changes

1 how can i change the speed of the berries that drop
2 How to change what berries will drop after a match is made
3 How to stop some many powerups from happening
4 How to change from saving to playerprefs to a database

any help with any of these would be great the person I bought it from will not answer any emails at all no support

Hi,

For your question, you can go with couple of things…

  1. Can do with Force with with berries are dropping, velocity also can be used, and lastly change in Y pos
  2. Instantiate new prefab or change texture and tag for berries to generate
  3. Make some constraints with name or tag
  4. Make some constraints with name or tag

Answered with best possibilities as per my knowledge…

For further assistant need more details about your query…

so I bought a game from the asset store called berry match and the author will not answer any questions on how to change anything

Not sure what script would have the settings for making the berried slow down and anything

The things you wanna change may depend on one or more things like physics, pos, scale, force etc…
It totally depends on how developer created it, for alternation you need to get in detail with scripting he/they made…

Without in depth detail one should not alter any part of game as this might cause in proper behaviour of game and game play might affect …

try to find the bit in the script where you move the items then follow it down to see what happens when a match is made. the berries moving should be after that. It may be best to put a breakpoint in at that bit & then step through the code until you find what is causing them to fall. Once that value is found you can search the project for where it is used & track it back to where the value is first set.

also read the code comments. The dev should have commented all the code so people can follow what is happening on each script

the code doesnt have many comments in the code i have been trying to find this for about a week with no luck

Then it looks like you will have to put a break point in somewhere & step through it until you find the bit you need. Everyone creates & structures their code differently so the answer could be anywhere. Sorry