Adding stuff to the game

MrNunoPT

New Member
Member
Aug 5, 2017
21
5
3
23
Hey is it possible to change the map? With this I mean adding new rad towns...
Is it possible to add new items too?


Thanks
 

Jakkee

Retired Staff
Retired Staff
Plugin Developer
Jul 28, 2014
1,465
932
113
Australia
Hey is it possible to change the map? With this I mean adding new rad towns...
Is it possible to add new items too?


Thanks
Yes :)
Very possible, New objects have been added in so I can't see why items can't be added
 

MrNunoPT

New Member
Member
Aug 5, 2017
21
5
3
23
I just made an Radtown on unity and I save it as .UNITY3D like the others textures/models in blundles folder
But how do I import it to an RB client side plugin.

Thanks
 
Last edited:

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
612
63
Yes, the issue of spawning objects from the client side really is very easy, but it is possible that there is a risk of being able to hack through unity3d files, @xandeturf and @salva are working on how to make a plugin that is safe to use, I already 90% of this finished, soon there will be news
 

MrNunoPT

New Member
Member
Aug 5, 2017
21
5
3
23
upload_2017-8-22_21-18-53.png

What do i need to put the spawns/ boxes and animals radiation.../ its everything in c#?

Waiting for your plugin :D
 
  • Like
Reactions: salva

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
612
63
View attachment 2212

What do i need to put the spawns/ boxes and animals radiation.../ its everything in c#?

Waiting for your plugin :D

You must make a plugin that
1 has a timer
2 check if there is loot
3 if there is no spawn then do the list of boxes ...

This is the easy way, but there are others
 
  • Like
Reactions: MrNunoPT

Jakkee

Retired Staff
Retired Staff
Plugin Developer
Jul 28, 2014
1,465
932
113
Australia
(Serverside plugin)
- Create dictionary of xyz locations of boxes
- On_PluginInit
- Check locations for those boxes
- If no box, Spawn

- On_Loot
- if loot box xyz is on dictionary
- create timer of X minutes with box xyz

- On_TimerCallback
- Get timer arguments
- Get lootbox spawn location
- Spawn
 
  • Winner
  • Like
Reactions: MrNunoPT and salva

DC4 | Сергей

Member
Member
Jul 12, 2017
53
1
6
28
Parts Unknown
(Serverside plugin)
- Create dictionary of xyz locations of boxes
- On_PluginInit
- Check locations for those boxes
- If no box, Spawn

- On_Loot
- if loot box xyz is on dictionary
- create timer of X minutes with box xyz

- On_TimerCallback
- Get timer arguments
- Get lootbox spawn location
- Spawn
You can just get all spawn points and add your own ...
 

salva

Friendly self-taught developer
Administrator
Jan 31, 2016
577
612
63
(Serverside plugin)
- Create dictionary of xyz locations of boxes
- On_PluginInit
- Check locations for those boxes
- If no box, Spawn

- On_Loot
- if loot box xyz is on dictionary
- create timer of X minutes with box xyz

- On_TimerCallback
- Get timer arguments
- Get lootbox spawn location
- Spawn
Exactly @Jakkee .... Exactly!:cool::cool: