Raised This Month: $32 Target: $400
 8% 

Is it sprite or code ?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SHIELD755
Veteran Member
Join Date: Feb 2018
Location: FROM MARVEL STUDIO
Old 11-04-2018 , 07:21   Is it sprite or code ?
Reply With Quote #1

i have seen a sentry gun see the pic below







as you can see there is BLUE glow on sentry gun so i am little bit confuse is it any sprite which is attach to model or its is fm_set_rendering code or something like that
__________________
SED LYF !!!
SHIELD755 is offline
wilianmaique
BANNED
Join Date: Nov 2016
Old 11-04-2018 , 09:19   Re: Is it sprite or code ?
Reply With Quote #2

It's a code
wilianmaique is offline
Send a message via Skype™ to wilianmaique
marcelowzd
Senior Member
Join Date: Feb 2011
Location: São Paulo, Brazil
Old 11-04-2018 , 10:15   Re: Is it sprite or code ?
Reply With Quote #3

It is done via code. Zombie Plague uses the same effect in "Zombie Madness" skill.
__________________
marcelowzd is offline
SHIELD755
Veteran Member
Join Date: Feb 2018
Location: FROM MARVEL STUDIO
Old 11-04-2018 , 10:48   Re: Is it sprite or code ?
Reply With Quote #4

is it possible to make a glowing sprite and attach to model
__________________
SED LYF !!!
SHIELD755 is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 11-04-2018 , 11:00   Re: Is it sprite or code ?
Reply With Quote #5

For light effect like on this photo u will need code for that any way.
Krtola is offline
Send a message via Skype™ to Krtola
SHIELD755
Veteran Member
Join Date: Feb 2018
Location: FROM MARVEL STUDIO
Old 11-04-2018 , 11:36   Re: Is it sprite or code ?
Reply With Quote #6

hmm i have tried by code fm_set_rendering but it glow onle shell(uppermodel) but i need this glow in some radius or in wide area so can anybody help ?
__________________
SED LYF !!!
SHIELD755 is offline
Krtola
Veteran Member
Join Date: Oct 2013
Location: Serbia
Old 11-04-2018 , 14:59   Re: Is it sprite or code ?
Reply With Quote #7

Quote:
Originally Posted by SHIELD755 View Post
hmm i have tried by code fm_set_rendering but it glow onle shell(uppermodel) but i need this glow in some radius or in wide area so can anybody help ?
Rendering is not for light effect from this photo.
te_dlight or somthing like that.

Last edited by Krtola; 11-04-2018 at 15:17.
Krtola is offline
Send a message via Skype™ to Krtola
E1_531G
Senior Member
Join Date: Dec 2017
Old 11-04-2018 , 15:57   Re: Is it sprite or code ?
Reply With Quote #8

This is TE_DLIGHT message.
__________________
My English is A0
E1_531G is offline
SHIELD755
Veteran Member
Join Date: Feb 2018
Location: FROM MARVEL STUDIO
Old 11-04-2018 , 18:52   Re: Is it sprite or code ?
Reply With Quote #9

te dlight ? i never work with this code can you give me a small tutorial or a example
__________________
SED LYF !!!
SHIELD755 is offline
iceeedr
Veteran Member
Join Date: Apr 2017
Location: Brazil
Old 11-04-2018 , 21:13   Re: Is it sprite or code ?
Reply With Quote #10

This way, I think.

Code:
public fl(ent)
{
	// check if entity isn't valid
	if(!pev_valid(ent))
		return;
	
	// new variable for origin and get origin of entity
	static Floatrigin[3];
	pev(ent,pev_origin,origin);
	
	// send the light flash
	message_begin(MSG_BROADCAST,SVC_TEMPENTITY);
	write_byte(27); // TE_DLIGHT
	write_coord(floatround(origin[0])); // x
	write_coord(floatround(origin[1])); // y
	write_coord(floatround(origin[2])); // z
	write_byte(radius); // radius
	write_byte(255); // r
	write_byte(255); // g
	write_byte(255); // b
	write_byte(255); // life
	write_byte(60); // decay rate
	message_end();	
}
__________________


Quote:
Originally Posted by fysiks View Post
Please stop trying to help. You appear to just be posting random stuff. Wait until you actually understand more about AMX Mod X and how the game works.
https://iceeedr.com.br/
iceeedr is offline
Send a message via Skype™ to iceeedr
Reply



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 18:55.


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