SA-MP Forums Archive
Spect a tu asesino cuando te matan - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Spect a tu asesino cuando te matan (/showthread.php?tid=251418)



Spect a tu asesino cuando te matan - Software - 26.04.2011

Trate de hacer esta funcion pero no me funcionaba, por eso recurro a ustedes, lo qe quiero es que cuando te maten Spectes al jugador que te mato por 10 segundos y que salga un gametext que diga "Spawneas en X segundos" y desdpues de los 10 segundos spawne si alguien me puede hacer o pasarme esta funcion se lo agradesco mucho


Respuesta: Spect a tu asesino cuando te matan - TheChaoz - 26.04.2011

va en pedidos.

o mostranos lo q hiciste y te decimos en que te equivocaste.


Re: Respuesta: Spect a tu asesino cuando te matan - Software - 26.04.2011

Quote:
Originally Posted by the_chaoz
Посмотреть сообщение
va en pedidos.

o mostranos lo q hiciste y te decimos en que te equivocaste.
:O no me di cuenta, esque postie rapidamente

Lo que hice:
pawn Код:
en onplayerdeath

TogglePlayerSpectating(playerid, 1);
PlayerSpectatePlayer(playerid, killerid);
SetTimer("muerto",100,false);

forward muerto(playerid,killerid);

public muerto(playerid,killerid);
{
TogglePlayerSpectating(playerid, 1);
TogglePlayerSpectating(killerid, 1);
return 1;
}
Use playerid y killerid para que no ocurrieran bugs


Re: Spect a tu asesino cuando te matan - [L3th4l] - 27.04.2011

pawn Код:
SetTimerEx("muerto", 1000 * 8, "ii", playerid, killerid); // Timer de 8 segundos


forward muerto(playerid, killerid);
public muerto(playerid, killerid) // Despues de 8 segundos
{
    TogglePlayerSpectating(playerid, 0);
    TogglePlayerSpectating(killerid, 0);
    return 1;
}



Respuesta: Spect a tu asesino cuando te matan - RcoN! - 27.04.2011

aqui tienes uno que habia echo yo.

https://sampforum.blast.hk/showthread.php?tid=143712


Re: Respuesta: Spect a tu asesino cuando te matan - Software - 27.04.2011

Quote:
Originally Posted by WHEELMANDTS
Посмотреть сообщение
aqui tienes uno que habia echo yo.

https://sampforum.blast.hk/showthread.php?tid=143712
Gracias lo probare!