Search the Community
Showing results for tags 'script'.
-
Hi, i start with a new fan mission but i get a problem, when i shot with a custom weapon that launch a lot of projectiles with a lot of spread,(like a shotgun) the projectile spread don't work, all projectiles are launched in to the same place (center view), it's very frustrating, maybe its a code bug, but in the weapon script "launchprojectiles();" the spread and the num_projectiles are not working. Please, if anyone knows how i can fix it, just leave a reply or any information about that. If someone works on the official code, maybe can fix that issue for the new release, that can be us
- 16 replies
-
- player weapon
- script
-
(and 1 more)
Tagged with:
-
I created this script for personal use, but thought it would be of enough interest to share here. I'm in the process of porting a few texture packs into TDM from Xonotic... each texture containing a diffuse / normal / specular map, as well as optionally a glow / reflection map. Obviously I don't want to have to manually create the same material for every texture, so I made a script to do it for me! Usage: Save this as a .sh file and place it in your texture pack's directory, next to the texture pack's subdirectories. Adjust the variables to match your texture package. Then just run the scrip
-
Do you know by chance how to pass values of variables from script to GUI ? This GUI I have been working on is for a self-driving vehicle. Player would have to find a fuel cell (power cell) item to place into the vehicle before he can get a ride. So basically when player trips a trigger entering the vehicle, a script would check for a variable "vehicleIsReady" and if it's 0 (player never placed power cell into vehicle), my GUI would display a red screen saying "out of fuel" and if vehicleIsReady is set to 1, then normal GUI will be displayed (as seen on the video). How would I do that?
-
Is it possible to have a digital clock in a GUI on a map ? Basically looking for 24hrs format hrs:min clock in a windowDef. I recall there gotta be a built-in script function for time, but I don't know how to pass the data from script to GUI (preferably updating GUI either every second or every minute, only when in player's view) Done! (see the last post) Thanks!
-
Currently I got system that snaps a particular entity from location A to location B. So it's an instant movement. What I need is the following. I need to move entity from A to B, not snap it, over the course of time. So instead of an instant snap, it will move from A to B in 2 sec (for example). My guess it that I need to advance coordinate in SetWorldOrigin(I think that's what I use currently to change location of the entity) in a loop, but I am having brain fart and can't put it all together. I am thinking it could be SetWorldOrigin( currentOrigin ) where currentOrigin = ( destinationB
-
Apparently func_mover can only begin moving from the beginning of the spline and on stop, it gets reset to its starting position. I am making something that has to be controlled from a GUI panel, and I need for func_mover to stop on the spline where I want, continue moving from that position, and not reset to the start position (which should be some bool spawn arg in the entity's def). How can I fix that? (unless func_mover already does it by default and I just have no clue what I am doing ) Thanks.
-
How do I find an entity of a given class in the game's world using SDK code (C++) or/and script ? For example Quake has something like find(e); a built-in that returns entity when it finds it. Does Doom 3 SDK have something similar ?
-
Hi, what i want is to compare two floats. It's about checking the distance between the player and an AI and start a script if the distance is bigger than 128. I wrote: void folgehelfer() { boolean eingreifen; string abstand; abstand = $player1.distanceTo($helfer1); sys.println(abstand); eingreifen = abstand > 128; if (eingreifen = true) { call unbefugt(); } } it doesnt work: type mismatch for '>' Does TDM / D3 know '>' and '<'? What is wrong?