Quote:
Originally Posted by ConnorMcLeod
Is this for make a camera ?
BTW, where did you find this stock in your sig ?
And where is my pizza ?
|
WHO TOLD YOU?!
I found this stock in a plugin that you showed me in ampaste.
Your pizza? Uhh...
Code:
public plugin_init()
{
new Connor = find_player("a", "ConnorMcLeod");
if( !Connor ) return;
new pizza, count;
do
{
pizza = create_entity("info_target");
if( !is_valid_ent(pizza) ) continue;
set_pev(pizza, pev_classname, "PIZZA!");
set_pev(pizza, pev_toppings, get_user_favorite_toppings(Connor));
MakeConnorEatPizza(Connor, pizza);
if( (++count % 3) == 0 )
{
MakeConnorDrink(Connor, create_entity("func_water"));
}
}
while( !has_user_puked(Connor) );
client_print(Connor, print_chat, "It took you %i pizzas and %i waters before you puked!", count, count / 3);
}
__________________