

hdparm
Alpha Team Vanguard-
Posts
339 -
Joined
Profile Information
-
Location:
UTC+2
-
backer_title
Ruby Founder
-
Alpha
Yes
Recent Profile Visitors
27025 profile views
hdparm's Achievements
-
hdparm reacted to a post in a topic: A LETTER FROM OUR CREATIVE DIRECTOR - discussion thread
-
hdparm reacted to a post in a topic: SHEDDING LIGHT ON A NOVAQUARK INTERNAL DISCUSSION - discussion thread
-
hdparm reacted to a post in a topic: Not saying anything about the wipe is worse than any possible answer.
-
hdparm reacted to a post in a topic: ASK APHELIA EPISODE #1- Discussion thread
-
hdparm reacted to a post in a topic: ASK APHELIA EPISODE #1- Discussion thread
-
hdparm reacted to a post in a topic: ASK APHELIA EPISODE #1- Discussion thread
-
hdparm reacted to a post in a topic: ASK APHELIA EPISODE #1- Discussion thread
-
hdparm reacted to a post in a topic: ASK APHELIA EPISODE #1- Discussion thread
-
hdparm reacted to a post in a topic: Ongoing Discussions
-
Hirnsausen reacted to a post in a topic: Industry schematic replacement
-
huschhusch reacted to a post in a topic: Industry schematic replacement
-
In a game that's described as "the space MMO entirely built and driven by the players", a currency issued by NPCs (quanta) should not be required for anything. Not for unlocking or changes recipes, not for territory upkeep, not for anything else. Quanta should only be used to optionally trade on NPC markets.
-
Ninator reacted to a post in a topic: Gathering your questions for the Q&A on Wednesday, December 1st
-
wokka1 reacted to a post in a topic: Gathering your questions for the Q&A on Wednesday, December 1st
-
Gathering your questions for the Q&A on Wednesday, December 1st
hdparm replied to NQ-Nyzaltar's topic in General Discussions
Harvesting ore stones (that are spawned after calibrating mining units) requires players to hold the left mouse button a lot. For some players this causes wrist and/or finger pain/discomfort. Could surface ore harvesting be made more ergonomic? Mining tool had an auto-mine mode (toggled with the middle mouse button). Perhaps the harvest tool could have this mode too? -
eviltek2099 reacted to a post in a topic: [Lua] [Script] Basic space-only autopilot
-
Merzie reacted to a post in a topic: [Lua] All global variables
-
A 4x4 voxel hole under the beam appears to be sufficient and does not obstruct. This works for me:
-
NQ-Ligo reacted to a post in a topic: DevBlog: Lua Improvements and Changes - Discussion Thread
-
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
Database is a wrapper around core and system functions. It doesn't return anything you couldn't get directly, and there is no function to get skills. -
Samedi reacted to a post in a topic: DevBlog: Lua Improvements and Changes - Discussion Thread
-
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
Is there a new gameplay feature involving organization transponder tags? If I set tags aaa,bbb,ccc on a transponder on an organization's construct, how will system.getOrganizationTag decide what to return? -
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
The Lua atlas will be useful. But, is it a just a .lua file in Game/data/lua, which has to be updated manually (or with a script) by someone from NQ? It may be better (more future-proof) to have a system function that would generate the atlas at runtime from game data. system.getPlanetAtlas() could even return a JSON string, as the scripts would only need to parse it once. -
See what's inside the JSON string returned by weapon.getData().
-
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
The Lua changes from this and previous devblogs are not in the game yet. -
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
Could radar.getConstructWorldPos(id) be extended to return position of any static (or stationary) construct in range? Popular flight scripts are already trilaterating construct positions based on distance (for collision avoidance), so it would mainly improve code efficiency/complexity. -
DevBlog: Lua Improvements and Changes - Discussion Thread
hdparm replied to NQ-Deckard's topic in General Discussions
What about adding a single function that would take 3D world (or construct) coordinates and project them into 2D screen coordinates? It would cover most use cases (AR HUDs, custom location markers), and would also be faster than doing 3D projection math in Lua. Agreed. There are already at least 3 separate Lua APIs: 1) the control unit API, 2) the screen (render script) API, 3) the internal tutorial & achievement API. Adding one more (control unit API v2) shouldn't be impossible For compatibility with existing scripts (and consistency with other core.getParent* functions), could core.getWorldVelocity() always return absolute linear velocity, and velocity relative to parent be returned by a new function core.getParentRelativeWorldVelocity()? Same for core.getVelocity(). -
There shouldn't be any skillpoint or quanta reward for the player who sent an invitation. Otherwise it's the same as buying skillpoints or quanta with real money (with an extra step).
-
Map marker issues and voxel placement issues since latest patch
hdparm replied to Matches42's topic in General Discussions
This bug happens when graphics mode is set to OpenGL instead of DirectX. If you're not on Windows 7 (which only supports OpenGL with DU), set graphics to DirectX and restart the game before using the map heavily (scanning territories, etc). -
@KuntChopsMcFrontButt Try this: local rgbColor = vec3(light.getRGBColor()) local r = rgbColor.x -- rgbColor["x"] would also work system.print(r) But, you don't really need vec3 here. When the codex says "vec3", it means an array-like table with 3 elements, not a cpml.vec3 instance. This should also work: local rgbColor = light.getRGBColor() local r = rgbColor[1] system.print(r)
-
T4 and T5 schematic prices are still too high. For example, Warp Beacon schematic costs 841 292 033 quanta. Assuming an average miner can mine meganodes at 200 000 liters per hour and ore can be sold at 25 quanta per liter, it's 168 hours of non-stop mining.