Please or Register to create posts and topics.

The Thread For Small Problems And Requests

PreviousPage 18 of 24Next

Hello!
I'd like to now if there's any separated model available on the internet for this circular piece of wall_dest models :D

Image

Please disregard any undeserved compliments.


Steam Profile
Workshop
PedroDeak wrote:
Hello!
I'd like to now if there's any separated model available on the internet for this circular piece of wall_dest models :D

Image

In a different format? I don't think so, but you can try decompiling it and running the smd and exporting as a different file.

@PedroDeak: I don't think that there's an already existing model like that either, but a good workaround could be to edit that model's texture and create a custom texture with only that circle and the rusted plate, then use it on brushes that size. It won't be a model, but I think it could look good. The other option is to decompile that wall_dest model and edit it erasing the parts you don't need, then recompile again.

ImageImageImageImageImageuseful tools and stuff here on TWP :thumbup:
[spoiler]ImageImageImageImageImage[/spoiler]
josepezdj wrote:
CJLERCH wrote:
Anyone know why/how to prevent Hammer from automagically inserting a dual Portal Device when I test my map? It doesn't do it with the full, uploaded beta maps, so I don't understand why it does it every single time I run the compiles straight from Hammer. If it's of any use, I always use the expert compiler with the exception of when optimizing (seeing visleaf changes as I change the map around).

Well, if you mean that your player gets the gun automatically when he is put in the elevator, then I think that what can be causing that is your map name. There is a script managing that (sry I'm far from my computer now to search for it and let you know), and depending on how your map name starts by (sp_ / sp_a1 / sp_a2 / etc), the player will get a one-fire only gun, or the dual fire device. Remember when you played Portal2 and you started getting the primary fire only gun, and it's not until several chambers onwards that you get the dual fire one.

Alright, thanks. But, do you happen to know the name of the script? The way I name stuff is definitely the cause (sp_cm_month_day_year), and I'd like to see if I can play around with it to make it so my maps (beginning in 'sp_cm') aren't given the portal gun.

Online daters be like:
Guy: Hey dure i will date u
Girl: sure

No man, I don't remember its name. Give me a couple of days to arrive home and will tell you. However, off the top of my head I think that all map names starting by "sp_" will be given a dual device, except for those starting by "sp_a1" I think... Give it a try.

ImageImageImageImageImageuseful tools and stuff here on TWP :thumbup:
[spoiler]ImageImageImageImageImage[/spoiler]

This is probably a simple problem to solve, but it's driving me crazy. I have a laser field and it works exactly the way it's supposed to, with the one exception that it's not visible. I have the right texture on either side of my trigger_hurt. I'm pretty sure there was an option to set the visibility when I first turned the nodraw brush into a trigger, but now that it exists, I can't find how to make it visible. Do I really need to delete the trigger and make a new one?

Lunch wrote:
This is probably a simple problem to solve, but it's driving me crazy. I have a laser field and it works exactly the way it's supposed to, with the one exception that it's not visible. I have the right texture on either side of my trigger_hurt. I'm pretty sure there was an option to set the visibility when I first turned the nodraw brush into a trigger, but now that it exists, I can't find how to make it visible. Do I really need to delete the trigger and make a new one?

for a laserfield you need a trigger_hurt brush (trigger) and a non-solid func_brush with the correct texture!

Lpfreaky90 wrote:
Lunch wrote:
This is probably a simple problem to solve, but it's driving me crazy. I have a laser field and it works exactly the way it's supposed to, with the one exception that it's not visible. I have the right texture on either side of my trigger_hurt. I'm pretty sure there was an option to set the visibility when I first turned the nodraw brush into a trigger, but now that it exists, I can't find how to make it visible. Do I really need to delete the trigger and make a new one?

for a laserfield you need a trigger_hurt brush (trigger) and a non-solid func_brush with the correct texture!

You're sure? I could have sworn I'd read that I can put the laserfield texture on the outside of the trigger brush. Thanks.

Triggers other than P2 fizzlers are never visible.

Falsi sumus crusto!

@CJLERCH: that script I was meaning is the "sp_transition_list.nut" (inside scripts/vscripts/transitions).

This is at the top of the code:

Code: Select all
FIRST_MAP_WITH_GUN <- "sp_a1_intro4"
FIRST_MAP_WITH_UPGRADE_GUN <- "sp_a2_laser_intro"
FIRST_MAP_WITH_POTATO_GUN <- "sp_a3_speed_ramp"
LAST_PLAYTEST_MAP <- "sp_a4_finale4"

Then there is the following code (line 393 and below):

Code: Select all
   DumpMapList()

   local portalGunCommand = ""
   local portalGunSecondCommand = ""
   local foundMap = false
   
   foreach (index, map in MapPlayOrder)
   {
      if (MapPlayOrder[index] == FIRST_MAP_WITH_GUN)
      {
         portalGunCommand = "give_portalgun"
      }      
      else if (MapPlayOrder[index] == FIRST_MAP_WITH_UPGRADE_GUN)
      {
         portalGunSecondCommand = "upgrade_portalgun"
      }
      else if (MapPlayOrder[index] == FIRST_MAP_WITH_POTATO_GUN)
      {
         portalGunSecondCommand = "upgrade_potatogun"
      }
      
      if (GetMapName() == MapPlayOrder[index])
      {
         break
      }
   }

   TryDisplayChapterTitle()
   
   if (portalGunCommand != "" && GetMapName() != "sp_a2_intro" && GetMapName() != "sp_a3_01" )
   {
      printl( "=======================Trying to run " + portalGunCommand )
      EntFire( "command", "Command", portalGunCommand, 0.0 )
      EntFire( "@command", "Command", portalGunCommand, 0.0 )
   }

   if (portalGunSecondCommand != "")
   {
      printl( "=======================Trying to run " + portalGunSecondCommand )
      EntFire( "command", "Command", portalGunSecondCommand, 0.1 )
      EntFire( "@command", "Command", portalGunSecondCommand, 0.1 )
   }
   
}

There is also a complete list of all maps in Portal2 in the script, and as that part of the code I posted above seems to say, depending on the map name you'll be given:

- a primary fire gun > from map "sp_a1_intro" to "sp_a2_laser_intro" (non inclusive)

- a dual fire gun > from "sp_a2_laser_intro" to "sp_a3_speed_ramp" (non inclusive)

- a potato gun > from "sp_a3_speed_ramp" onwards until "sp_a4_finale4"

However, since none of us are naming our maps like VALVe's :p, what happens then? there was an old post that Kennkong made on this topic, take a look here.

That was all I know.

ImageImageImageImageImageuseful tools and stuff here on TWP :thumbup:
[spoiler]ImageImageImageImageImage[/spoiler]
PreviousPage 18 of 24Next