Hi, you can ask irrelavant questions of this itch project topic by using email. Anyways you cant use KeyDown for setting animation directly.. it spams function set animation and it wont allow model to play animation, to prevent this you can use variable..
[animation must be set one time only on each keypress]
Also you can use my action that sets animation [simple scripts] -it wont set animation if animation is already set (so it cant be spammed by keydown)
https://5v3n.itch.io/coppercube-simple-scripts
5v3n
Creator of
Recent community posts
Sometimes if you have 3d model that uses same texture for multiple obj groups..
then it shows as one texture slot in coppercube.
In tools/options --untick checkbox that says : group similar materials in materials window
(this may work)
also it depends how obj exporter works.. it may group similar materials also.
(so if you use textures that has different filenames it cant do that)
Hi ,this is very nice .. with sounds you have added and car texture it looks and sounds cool.
NB! i had problems to run the game because i had no idea how to start the game :D
Add this line to your main meny -"maybe you have this there but scale of overlay makes it invisible on my screen":
Press "R" to restart the game
targetname is player name who gets damaged.. man in this case.
damage val is value of damage that happens if attack action executed 10 in this case.
use random if enabled puts additional damage to the damage val..damageVal+random(number)
random max 10 is in range between 0 to 9...
so if random val is 9 and damageVal is 10 -total will be 19
ifRND0miss hit.. if random is 0 ..player gets no damage at all.if enabled.
critical hit not enabled in this script-- it will be used to freeze player if hit is 19 (means total) in this case. so player hit animation + maybe some camera shake or something i will figure out.
Hi, coppercube writes file .. client program sends it to server.. server sends ot to client programs.. client writes it to a file .. coppercube read it from file- then in script it parses the string: string looks like - command_name, value,value ..
i dont currently have second computer so its not possible for me to test and make fixes properly.
Player positions are sent out with interval..minimal event action sends commamd only if action is made and should be update something..for example remove node or create one or set visible or invisible something.
Commamds to parse you can add in script ..
In my example i dont have many of them but can be added as many as needed.
Thanks, this healthbar is meant for being used on AI players to display health (game actor with health) but with some simple edits it can be used anywhere.. but there are also script made
https://hadoken-records.itch.io/coppercube-power-bars
Its not free but worth its price and its probably exactly what you need.
You need to setup command for this.. its actually simple. if object picked up you send out command so object will set invisible for others -object can be idenified by its name.. so command can be "oVisible,nodename,false"
Script will parse this line as 3 parameters..
command:oVisible
par1:nodename
par2:value
setScenenodeProperty(getNodebyname(par1) ,"Visible",par2);
I have example for this actually .. i will upload example with many commands soon.