In fact I want you guys to tell me what is better to do .
This(" with stock")
Code:
stock show_hud_effect(id,Say[ ],Size)
{
if (Size){
set_hudmessage(255, 0, 0, 0.80, -1.0, 0, 6.0, 12.0)
show_hudmessage(id, "%s",Say)
}
else
{
set_dhudmessage(255, 0, 0, 0.80, -1.0, 0, 6.0, 12.0)
show_dhudmessage(id, "%s",Say)
}
}
Or without stock.
Code:
show_hud_effect(id,Say[ ],Size)
{
if (Size){
set_hudmessage(255, 0, 0, 0.80, -1.0, 0, 6.0, 12.0)
show_hudmessage(id, "%s",Say)
}
else
{
set_dhudmessage(255, 0, 0, 0.80, -1.0, 0, 6.0, 12.0)
show_dhudmessage(id, "%s",Say)
}
}