25 lines
495 B
Plaintext
25 lines
495 B
Plaintext
|
function scr_pointsparticle(argument0) {
|
||
|
//displays the points on screen for 1 second, with a fade in and out
|
||
|
//copyright 2010 Fenyxtec Studios
|
||
|
//original code by William Hogueison
|
||
|
|
||
|
numero += 1
|
||
|
draw_set_font(fnt_arial_s5_italic)
|
||
|
draw_set_color(c_white)
|
||
|
draw_set_alpha(.2*numero)
|
||
|
if numero >= 30
|
||
|
{
|
||
|
draw_set_alpha(1-.05*(numero-30))
|
||
|
}
|
||
|
draw_text(x,y-numero/2,string_hash_to_newline(argument0))
|
||
|
if numero >= 50
|
||
|
{
|
||
|
numero = 0
|
||
|
}
|
||
|
draw_set_alpha(1)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|