• 0

    posted a message on What Is Next Project (WINP)

    Was just testing how to upload pictures....

    Posted in: Map Feedback
  • 0

    posted a message on What Is Next Project (WINP)

    Added a generic dialog

    Posted in: Map Feedback
  • 0

    posted a message on What Is Next Project (WINP)

    Various testing map for those interested.

    Posted in: Map Feedback
  • 0

    posted a message on What Is Next Project (WINP)

    Added a creep system (enemy units)

    Pick any model

    (This effects all the creeps)

    MovementSpeed

    Life - current, max, regen, armor

    Shield - current, max, regen, armor

    Energy - current, max, regen

    Attack - Damage, speed, range

    Posted in: Map Feedback
  • 0

    posted a message on What Is Next Project (WINP)

    The idea is this, I have a map and I add stuff to the map. I post updates and if anyone has any ideas or suggestion they say it. Map currently has:

    Map
    • Map size is 256x256.
    • Random map generator (in-game): terrain, lighting, foliage, weather, sky (skybox, sun, moon, etc), fog.
    • Saving and loading of maps; maps can be saved, and an entirely new map can be created in-game.
    • Unlimited number of maps because of random map generator and saving/loading of maps.
    • Collision system for destructible like trees, rock, etc.
    Units
    • Creating units for players, enemies, and NPC's.
    • Modify any units stats; Life/Shields/Energy (max, regeneration, armor), Attack (damage, speed, range), Movement Speed (min, max, acceleration, deceleration).
    UI
    • Normal UI has been removed as wasn't needed for a RPG map.
    • Minimap is moved to top right corner, made transparent, and updated itself to only show units within your characters range.
    • 1st/3rd person camera view.
    • Keyboard movement (WSAD).
    • Mouse targeting and attacking system. Targets are highlighted when you target them.
    • A UI dialog for editing your units stats (made as a demo/showcase for later things).
    Future ideas being tested (may never use them):
    • Quest system
      • Dialogs complete
      • Basic "Go-To point" done.
    Doable but not needed yet.
    • Rotation of units/actors (flipping and stuff).
    Posted in: Map Feedback
  • 0

    posted a message on [Help] "Point With Polar Offset" but a 3D version

    Wanted to know if my understanding is correct or wrong.

    Quote:

    you need a and q angels. l is 2d distance. a is 2d angle, and q is the angle between vector (from source to target) and the surface

    a = atan2(dx, dy) 2d angle from one point to another point in radians(+/- 0-1)

    l = sqrt(dx^2, dy^2) 2d distance from one point to another point

    q = atan2(l, dz) what does this do? i dont understand what atan2 does. ?distance times z of point?

    Posted in: Miscellaneous Development
  • 0

    posted a message on [Help] "Point With Polar Offset" but a 3D version

    Hello.

    I'm trying to figure out for to create a function similar to "Point With Polar Offset" but a 3D version.

    For my map I have the players main unit in the center of the map (x128y128z0) and another unit far away (x675y382z934). Since this other unit is too far away to show I want to get the angle difference, use a 3D version of "Point With Polar Offset" with a distance of 128, then scale the unit down to make it seem far away.

    Posted in: Miscellaneous Development
  • 0

    posted a message on Dynamic Terrain (City) Create Korhal Tower from Trigger
    Quote from Exaken: Go

    A doodad is an actor. Create Actor At Point should work, try using other actors and see if they show up.

    Close.

    My best guess would be to create a dummy unit, via triggers attach the Korhal building model, and alter it (variation, heightm scale, color, etc). the onkly problem i see is the collision range being too small and other units getting too close to it.

        Actions
            Unit - Create 1 test123 for player 15 at (Random point in (Playable map area)) using default facing (No Options)
            Actor - Attach Korhal Building to Origin on (Last created unit)
            Actor - Send message (ModelSwap Korhal Building -1) to actor (Last created actor)
            Actor - Send message (SetHeight 0) to actor (Last created actor)
    
    Posted in: Triggers
  • 0

    posted a message on [Question] Terrain Deformation Store Help

    Hello,

    I created a system which uses terrain deformations and stores the height in variables for later use. This system has limits. I want to remake the system but use a different method which i believe would work better for me. Basically I take all the variable height data and store and/or compress compress it into a smaller data chunk then only recall/read these height data chunks for whatever area of the map is in use.

    I'm looking for ideas of how to do this.

    Some other information which may or may not help. map size is 256x256 the terrain deformations go from 0 to 46 height with a 0.10 jump. 460 deformation actors total.

    Posted in: Miscellaneous Development
  • 0

    posted a message on [Request] Terrain model capper

    Thank you very much. It works correctly since I got the alignment and scaling correct.

    I've encountered another problem though. While in the terrain editor, if you make two hills of 2x2 with 4 height side by side the editor will automatically "connect" these two hills with some terrain. So you won't have two separate hills but one 2x4 hill.

    I'd like to request a simple model, using two triangles to make one square, size of 1x1 or 2x2 and I'd scale it in-game, and a texture of terrain. The reason being is that with a terrain panel I could connect the gaps.

    Posted in: Requests
  • 0

    posted a message on [Request] Terrain model capper

    Hello and good day to you sir or madam.

    The reason I'm requesting this model might be a little complex to understand. I believe this is a very simple model requiring nine triangles or polys (I do not know the correct term) and one texture or skin. I will attempt to find the file path or *.dds file for the texture but this is not my field of knowledge and may not be able to.

    This might get a little complex, basically the game allows you to create terrain deformations (bumps, change height of terrain, etc) but this suffers from a problem. The problem has to do with viewing the terrain from certain angles will cause the most of (or entire) terrain to disappear. I believe this has to do with the cameras built-in rendering (showing of models and such) method which only renders things based on the map height, which terrain deformations do not change (its just a visual thing, not changing actual terrain height data). Part two, models (such as a marine, a flying unit, or a building) will still show up. Therefore I believe if i were to create a terrain deformation and "cap" it with a model of the terrain this would solve the problem. The terrain may disappear at certain angles but the models will not.

    Model details

    The images show 4 terrain cells raised to comprise one "block", with a size (in-game) of 3 by 3 (3x3). And a height are either 1 (lower terrain image) or 4 (higher terrain image). I've put a description with each image when you view it telling you what your seeing.

    I want the model to be an exact same as the pictures shown, using the 9 triangles and the terrain texture (either part of the image or using the in-game texture), and the height to be 1 (unless this causes the texture to not look correct for some reason?).

    Posted in: Requests
  • 0

    posted a message on Break while loop or stop trigger
    Quote from BasharTeg: Go

    Make the channeling ability spawn a unit periodically for the casting player (via data), then run the trigger using the Unit Is Created event. Immediately remove the created unit, then run your actions. The trigger unit should only be created while the casting unit is channeling. You can use "owner of created unit" to find the casting player.

    The actions won't duplicate and will be much simpler to design.

    Magnifico! Learning new things all the time. But doesn't this count as cheating since its data and not triggers? :)

    Posted in: Triggers
  • 0

    posted a message on Break while loop or stop trigger

    I believe I see the problem. While the first trigger is waiting, you use the ability again causing a second trigger to run. After the waiting is done on the first trigger all the condition checks will still see that the unit is using the ability still and will keep running. My idea is to set a variable to a random real number, set this random number to the units custom value, and each time you do the condition checks check the units custom value for this random number. If a second trigger was to start while the first one is waiting the second trigger would change the units custom value to a new random number and the first trigger would see the incorrect number and stop.

    Posted in: Triggers
  • 0

    posted a message on Break while loop or stop trigger

    Post trigger please.

    Posted in: Triggers
  • 0

    posted a message on Bug With Camera

    @Enexy: Go

    I believe I encountered the same bug a while ago while working 3D space ship map. The yaw wouldn't update for small changes in yaw but it wasn't that big of a deal for me. Perhaps it was designed that way because getting a players yaw causes network traffic for all players and if a player moved their mouse/yaw like crazy you could have over 360 or more event to deal with in a second.

    Posted in: Triggers
  • To post a comment, please or register a new account.