hey guys first post
im making my first game with sandbox, im an experienced user of gamermaker, ive made lots of 3d games as well as FPS and RPG's etc with it all pretty basic and non pollished, now im trying this, i really like how easy it is to make the landscape and to import models etc im just struggling with the config file commands of objects (presuming this is where you code the objects to responde differently? or tell me where the coding needs to be implemented)
3 things i want to do to start off or direct me to tutorials please
1 i want my object to be able to be pushed if i walk into it (push a box along a flat ground)
2 i want my object to fall (needs gravity effect)
3 (might be hard to create in sandbox), i want to make an explosion (not the image but the actual event) in which items in a radius are forced away from the explsion effect
now if i added an explsion effect next to a box with both gravity and the abuilty to be pushed i would think it would fly away and then land....now with game maker this would be a very simple effect to make so im presuming it can't be to hard?
i thing i can't manage to find but there is one with gamemaker there was a command directory so if you wanted to do anything you could check this help file with every command available for scripts, i can't manage to find one?
also sorry for keep bringing up gamemaker, i really do like sandbox alot better it looks amazing and so easy to landscape, gamemaker seems more user friendly for noobs is all
thanks for reading
Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
push objects ingame + gravity + explosions
-
- Member
- Posts: 17
- Joined: April 4th, 2012, 2:44 am
- Name: shanan
- kddekadenz
- Member
- Posts: 423
- Joined: July 17th, 2011, 11:02 am
- Name: kdd
- Contact:
Re: push objects ingame + gravity + explosions
Most people started developing games using gamemaker, me too 
You can create in FPS mode boxes(pushable,gravity) and barrels(same but explode), where you can choose the models.
BUT: this will only happen when they get damaged. And the developers of PAS removed weapons from the original Sauerbraten Engine, to make it kidfriendly.
There is currently a project called 'Water Wars' which will reimplementing weapons.
For command directories check the wiki ('Advanced Topics')

You can create in FPS mode boxes(pushable,gravity) and barrels(same but explode), where you can choose the models.
BUT: this will only happen when they get damaged. And the developers of PAS removed weapons from the original Sauerbraten Engine, to make it kidfriendly.
There is currently a project called 'Water Wars' which will reimplementing weapons.
For command directories check the wiki ('Advanced Topics')
Kelgar is an advanced RPG beeing developed in Sandbox
- Sircameron
- Member
- Posts: 62
- Joined: March 6th, 2012, 9:13 pm
- Name: Cameron
- Location: Indiana
Re: push objects ingame + gravity + explosions
For the explosion you can add in the item .cfg for the item you want to have the explosion
Code: Select all
r_item_use kickback # /// # = 1-1000?
r_item_use radius # // # = 1-1000
- kddekadenz
- Member
- Posts: 423
- Joined: July 17th, 2011, 11:02 am
- Name: kdd
- Contact:
Re: push objects ingame + gravity + explosions
^--- RPG Mode
Kelgar is an advanced RPG beeing developed in Sandbox
- Sircameron
- Member
- Posts: 62
- Joined: March 6th, 2012, 9:13 pm
- Name: Cameron
- Location: Indiana
Re: push objects ingame + gravity + explosions
Yea sorry that was for RPG mode.. But if you're editing the .cfg file for each model there's links to the "cubescript model reference" all over the forums, and in the tutorials with a list and descriptions for each setting/command for each model format
Re: push objects ingame + gravity + explosions
In the RPG you can push NPCs and items around by walking against them.
You can also push obstacle entities, BUT you'll need to give it the OBS_MOVABLE flag as follows
Part of the idea behind the "obstacle" entities is to block off paths and things, so it's not on by default.
You can also push obstacle entities, BUT you'll need to give it the OBS_MOVABLE flag as follows
Code: Select all
r_obstacle_flags $OBS_MOVABLE
This is not a url, clicking it is pointless
-
- Member
- Posts: 17
- Joined: April 4th, 2012, 2:44 am
- Name: shanan
Re: push objects ingame + gravity + explosions
hey thanks everyone.
how do you attatch an entity (box) to a model? i feel real dumb for asking this as it seems like it should be a simple as thing. I just search and search and can't find a tutorial. i can find jump pad but thats literaly put the model over top of the entity and it won't move so different situation.
please help thanks for your patience
how do you attatch an entity (box) to a model? i feel real dumb for asking this as it seems like it should be a simple as thing. I just search and search and can't find a tutorial. i can find jump pad but thats literaly put the model over top of the entity and it won't move so different situation.
please help thanks for your patience