The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can i add Breath (snow) every like.. 3 seconds.[SOLVED]
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#1
How can i add Breath (snow) every like.. 3 seconds.[SOLVED]

How is it possible to have a breathing Like a small fogarea...

I am trying and trying........
I can get it to work, only it seems that the fog only works when walking in 1 direction..
When i walk to x for example it works..
When i walk in a Z direction the fog isnt showing, only on the side of the player..

Any help would be required and apreciated here.
Thanks!

Have this script set up for the fog to show up every.. seconds.

PHP Code: (Select All)
//// Timer which creates Breath at the player 
void Refresh_Snow(string &in asTimer)
{

CreateParticleSystemAtEntityExt("Snowy""Snow_Breath_28.ps""Player"false,1111false0077);

AddTimer("Refresh_Snow"0.25f"RemoveFog");
}
 
void RemoveFog(string &in asTimer)
{
DestroyParticleSystem("Snowy"); 
DestroyParticleSystem("Snowy"); 
AddTimer("Refresh_Snow"2"Refresh_Snow");

(This post was last modified: 06-26-2015, 09:32 PM by DnALANGE.)
06-25-2015, 09:20 PM
Find


Messages In This Thread
How can i add Breath (snow) every like.. 3 seconds.[SOLVED] - by DnALANGE - 06-25-2015, 09:20 PM



Users browsing this thread: 1 Guest(s)