Raised This Month: $ Target: $400
 0% 

Zombie addition


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
[ --<-@ ] Black Rose
ANNIHILATED
Join Date: Sep 2005
Location: Stockholm, Sweden.
Old 01-26-2007 , 13:38   Re: Zombie addition
Reply With Quote #2

I dunno really what you wanna do, but I'll try.
Code:
public tasks(id) {     get_user_info(id, "model", model, 31);         if ( contain(model, "human") )         set_user_rendering(id, kRenderFxGlowShell,255,0,0,kRenderNormal,25);             else if ( contain(model, "zombie") ) {         set_user_footsteps(id, 1);         set_user_gravity(id, 1.0); // 1.0 is default gravity ( 800 )     } }
If you really need the delay:
Code:
public if_human(id)     set_user_rendering(id, kRenderFxGlowShell,255,0,0,kRenderNormal,25); public if_zombie(id) {     set_user_footsteps(id, 1);     set_user_gravity(id, 1.0); // 1.0 is default gravity ( 800 ) } public tasks(id) {     get_user_info(id, "model", model, 31);         if ( contain(model, "human") )         set_task(0.5, "if_human", id)             else if ( contain(model, "zombie") )         set_task(1.0, "if_zombie", id) }
[ --<-@ ] Black Rose is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:30.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode