View unanswered posts | View active topics It is currently Tue Mar 19, 2024 2:57 am



Reply to topic  [ 78 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
 Sandbox: Firing Range V2.1 - Last updated 16.12.12 
Author Message
User avatar

Joined: Mon Dec 26, 2011 8:39 pm
Posts: 30
Location: Here There Everywhere.....EVERYWHERE!!!
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
I don't know if its been considered, but maybe try making one with no roof. Maybe something like the area the dummies spawn in on Dummy Assault. It would help in bomb testing and for craft/vehicles such as the chimera or various nuclear devices. :smile:


Thu Jul 26, 2012 8:45 pm
Profile

Joined: Fri Sep 10, 2010 1:48 am
Posts: 666
Location: Halifax, Canada
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
Luringen wrote:
-A trigger for setting clones in sentry mode with a weak blunderpop (as they would run towards you if they were unarmed, they can't hurt doors and the gun is extremely weak). Might give them a custom, unbuyable 0-damage pistol later.
Here's a better way, it'll keep them from moving at all. Add this anywhere in the Update function, I hope there are no typos:
Code:
if self.Patrol == 0 then
   for actor in MovableMan.Actors do
      -- I'm assuming you defined self.CPUTeam at the start since it's common practice
      if actor.Team == self.CPUTeam and actor.AIMode == Actor.AIMODE_SENTRY then
         actor:GetController():SetState(Controller.MOVE_LEFT , false);
         actor:GetController():SetState(Controller.MOVE_RIGHT , false);
         actor:GetController():SetState(Controller.BODY_JUMP , false);
         actor:GetController():SetState(Controller.BODY_JUMPSTART , false);
         actor:GetController():SetState(Controller.BODY_CROUCH , false);
      end
   end
end


For more on this look here:
http://wiki.datarealms.com/LuaDocs/Controller


Thu Jul 26, 2012 11:26 pm
Profile
User avatar

Joined: Fri Jun 29, 2012 11:40 am
Posts: 149
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
@Zeroxys: I'll see what i can do, right now there is a buildin meant for bomb testing to the right of the main facility. If i can keep clones from engaging hostiles, I'll add it.

@Bad Boy: Thanks, that's perfect! I'll clean up my code and implement it.


Fri Jul 27, 2012 1:37 pm
Profile
User avatar

Joined: Wed Apr 25, 2012 4:17 am
Posts: 202
Location: Brisbane
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
Luringen wrote:
Main changes:
-Bigger map
-A trigger for setting clones in sentry mode with a weak blunderpop (as they would run towards you if they were unarmed, they can't hurt doors and the gun is extremely weak). Might give them a custom, unbuyable 0-damage pistol later.
-A trigger for decreasing spawn delay from 5 seconds to 2,5


This is much better, although the blunderbuss is not that weak and can easily kill vanilla units with a few good shots.


Sat Jul 28, 2012 4:00 am
Profile
User avatar

Joined: Fri Jun 29, 2012 11:40 am
Posts: 149
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
@Sir: Bad Boy showed me how to deactivate movement for actors, so they'll be unarmed in the next version.


Sat Jul 28, 2012 10:21 am
Profile
User avatar

Joined: Wed Apr 25, 2012 4:17 am
Posts: 202
Location: Brisbane
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 24/07
Luringen wrote:
@Sir: Bad Boy showed me how to deactivate movement for actors, so they'll be unarmed in the next version.

Great! :)


Sun Jul 29, 2012 1:41 pm
Profile
User avatar

Joined: Fri Jun 29, 2012 11:40 am
Posts: 149
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
New version is up, finally put it in the OP. Large changes in how respawning is handled, and a new outdoors area with automatic replacement of new clones. The old chamber feels outdated and useless now... If no-one wants it, it might get removed.

The outdoors firing range might be a bit small with three spawnpoints, I'll likely increase its size and add platforms for shooting long range guns and explosives. For those uses, the indoors firing range is better ATM.

BTW, the pulse digger is awesome for clearing up the mess.


Sun Jul 29, 2012 2:26 pm
Profile
Data Realms Elite
Data Realms Elite
User avatar

Joined: Fri Jan 07, 2011 8:01 am
Posts: 6211
Location: In your office, earning your salary.
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Keep the old chamber! I like to use it as a waiting room or something like that =P


Sun Jul 29, 2012 7:38 pm
Profile
User avatar

Joined: Fri Jun 29, 2012 11:40 am
Posts: 149
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Sure, it can stay. But I should probably give it the same automatic replacement of dead clones thing as the outside one.
I dont use the underground chamber myself, so what do you think? Are the settings really necessary anymore? Does anyone use moving clones? I'd love to make the chamber more useful, so any ideas on what to do with it would be great.


Sun Jul 29, 2012 8:09 pm
Profile
Data Realms Elite
Data Realms Elite
User avatar

Joined: Fri Jan 07, 2011 8:01 am
Posts: 6211
Location: In your office, earning your salary.
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Could you make the chamber made of test material or something like that? Using some tough explosives at times damages the terrain so badly that I usually reset the scene too soon.


Sun Jul 29, 2012 8:14 pm
Profile
User avatar

Joined: Fri Jun 29, 2012 11:40 am
Posts: 149
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Yeah, that's a problem. I have no idea how to fix it (or if it's possible), but I'll check the wiki and experiment a bit.


Sun Jul 29, 2012 8:23 pm
Profile
User avatar

Joined: Sun Jan 28, 2007 10:32 pm
Posts: 1609
Location: UK
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Custom bunker modules. ;)


Sun Jul 29, 2012 9:42 pm
Profile YIM
User avatar

Joined: Mon Dec 26, 2011 8:39 pm
Posts: 30
Location: Here There Everywhere.....EVERYWHERE!!!
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Luringen wrote:
Sure, it can stay. But I should probably give it the same automatic replacement of dead clones thing as the outside one.
I dont use the underground chamber myself, so what do you think? Are the settings really necessary anymore? Does anyone use moving clones? I'd love to make the chamber more useful, so any ideas on what to do with it would be great.


IDK about everyone else but i would prefer stationary targets. *I can't shoot* :???:


Sun Jul 29, 2012 10:31 pm
Profile
Data Realms Elite
Data Realms Elite
User avatar

Joined: Fri Jan 07, 2011 8:01 am
Posts: 6211
Location: In your office, earning your salary.
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
You can already do that, just stand on the center "switch", the one that says "Clones jump into pit". Standing on it will make it change to "Clones stand still" or something like it.


Sun Jul 29, 2012 10:33 pm
Profile
User avatar

Joined: Sun Jan 28, 2007 10:32 pm
Posts: 1609
Location: UK
Reply with quote
Post Re: Sandbox: Firing Range V2 - Last updated 29/07
Zeroxys wrote:
Luringen wrote:
Sure, it can stay. But I should probably give it the same automatic replacement of dead clones thing as the outside one.
I dont use the underground chamber myself, so what do you think? Are the settings really necessary anymore? Does anyone use moving clones? I'd love to make the chamber more useful, so any ideas on what to do with it would be great.


IDK about everyone else but i would prefer stationary targets. *I can't shoot* :???:


Then start learning how to shoot moving targets. :P


Mon Jul 30, 2012 12:00 am
Profile YIM
Display posts from previous:  Sort by  
Reply to topic   [ 78 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

Who is online

Users browsing this forum: No registered users


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
[ Time : 0.100s | 15 Queries | GZIP : Off ]