Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Request enivormental effects
#1
is it possible to make ur character have dust fly around him as where he walks so its noticeable?

i.e say the character walks forward a dust cloud follows him?
Reply

#2
It's possible, but I am not sure about the dust part, there will have to be an FX with dust or someting.
Here's an example of novagas fallowing a player :

Code:
novabitch()
{
        self endon("death");
        self.campcounter = 0;
        for(;;)
        {
                self.myLastOrig = self.origin;
                wait 0.35;
                if(Distance(self.origin,self.myLastOrig)<20)
                {
                        self.campcounter++;
                        if(self.campcounter==5)
                        {
                                SpawnTimedFX(level.fx_tabun_1, self.origin);
                                self.campcounter = 0;
                        }
                        
                }
                else
                {
                        SpawnTimedFX(level.fx_tabun_1, self.origin);
                        self.campcounter = 0;
                }
        }
}
--
Reply

#3
thanks, nova gas can do
Reply

#4
(01-17-2011, 12:50)Eekhoorn Wrote: It's possible, but I am not sure about the dust part, there will have to be an FX with dust or someting.
Here's an example of novagas fallowing a player :

Code:
novabitch()
{
        self endon("death");
        self.campcounter = 0;
        for(;;)
        {
                self.myLastOrig = self.origin;
                wait 0.35;
                if(Distance(self.origin,self.myLastOrig)<20)
                {
                        self.campcounter++;
                        if(self.campcounter==5)
                        {
                                SpawnTimedFX(level.fx_tabun_1, self.origin);
                                self.campcounter = 0;
                        }
                        
                }
                else
                {
                        SpawnTimedFX(level.fx_tabun_1, self.origin);
                        self.campcounter = 0;
                }
        }
}
What do i edit to make it on the player aswell
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  Problem with Rain Effects on Maps mitchhacker 5 4,453 10-22-2013, 00:46
Last Post: mitchhacker
  effects CheGuevara 1 1,941 04-07-2013, 10:56
Last Post: Nekochan
  Help Effects editor & sound list Lemon 14 6,578 04-04-2012, 22:24
Last Post: rotceh_dnih
  remove effects created with PlayFX? xplosiff 3 2,600 01-05-2012, 11:59
Last Post: Yamato
  [Request] Adobe After Effects Arteq 2 1,901 08-24-2011, 12:25
Last Post: d0h!
  Remove weather effects ONLY! Demyxxx 7 5,590 07-25-2011, 00:13
Last Post: BloKK187
  [Request] Folder ONLY with removed weather effects NOT subjects! Demyxxx 0 1,537 07-06-2011, 10:15
Last Post: Demyxxx
  [News] The effects of Alcohol = pizzaburger rotceh_dnih 8 4,136 06-30-2011, 21:40
Last Post: number1

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.