How can I do? Respawn 50% Lucky
Quote:
|
Originally Posted by Subrosa007
Hey amazing man!
Can you make me maybe a little /vipmenu? If you read that i give you some things what there should be?
*HP and AP
*Glow Color
*Speed - 450 at the round end and when you pick gun then speed will not go.
*Gravity - 500
*Glock with 1 bull
*Silent Footsteps
*Respawn 50% Lucky
Sounds Good ?
|
I make ->
PHP Code:
public vipmenuhandler(id, menu, item)
{
case 7: // Respawn 50% Lucky
{
set_task(0.1, "respawn", id);
client_printc(id, "%s You Have just recieved !gRespawn Lucky!n", PREFIX);
}
}
public respawn() {
if( random % 2 )
{
ExecuteHamB(Ham_CS_RoundRespawn, id);
client_printc(id, print_chat, "%s: You are Respawn!!", PREFIX);
}
}
__________________