Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Parmaklarla Dans
#6
Quote:#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>
#include <fakemeta>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"

new model[] = "models/apo.mdl";

new lastman;
new modelza[ 32 ];

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)

RegisterHam( Ham_Spawn, "player", "Ham_spawn" );
register_logevent( "logevent_round_end", 2, "1=Round_End" );
register_event( "CurWeapon", "Event_CurWeapon", "be", "1=1" );
}

public plugin_precache( )
{
precache_model( model );
}

public Ham_spawn( id )
{
if( lastman != id )
{
pev( id, pev_viewmodel2, modelza, charsmax( modelza ) );
}
else if( id == lastman )
{
lastman = -1;
client_cmd( id, "slot3" );
set_pev( id, pev_viewmodel2, modelza );
}
}


public Event_CurWeapon( id )
{
if( is_user_alive( id ) )
{
if( lastman == id )
{
if( lastman != -1 )
{
client_cmd( lastman, "slot3" );
set_pev( lastman, pev_viewmodel2, model );
}
}
}
}

public logevent_round_end()
{
new players[ 32 ], pnum;
get_players( players, pnum, "ae", "TERRORIST" );

if( pnum == 1 )
{
lastman = players[ 0 ];
client_cmd( lastman, "slot3" );
set_pev( lastman, pev_viewmodel2, model );
}
}

bunu bi dene ama ses olayı yok çalışırsa sesi ekleyecek birisi lazım bize kod : alıntı.
Reply


Messages In This Thread
Parmaklarla Dans - by kadir008 - 15-06-15, 19:08
Cevap: Parmaklarla Dans - by kanun67 - 19-06-15, 14:32
Cevap: Parmaklarla Dans - by kadir008 - 19-06-15, 16:52
Cevap: Parmaklarla Dans - by kadir008 - 19-06-15, 17:03
Cevap: Parmaklarla Dans - by EscapeWizard - 21-06-15, 01:04
Cevap: Parmaklarla Dans - by aPooCannn - 01-07-15, 17:14
Cevap: Parmaklarla Dans - by kadir008 - 16-06-15, 00:10
Cevap: Parmaklarla Dans - by kanun67 - 16-06-15, 13:17
Cevap: Parmaklarla Dans - by memoaho123 - 16-06-15, 17:33
Cevap: Parmaklarla Dans - by MadaFaka3434 - 16-06-15, 17:49
Cevap: Parmaklarla Dans - by kanun67 - 16-06-15, 21:51
Cevap: Parmaklarla Dans - by kadir008 - 17-06-15, 14:28
Cevap: Parmaklarla Dans - by kanun67 - 17-06-15, 14:29
Cevap: Parmaklarla Dans - by kadir008 - 18-06-15, 01:31
Cevap: Parmaklarla Dans - by kadir008 - 18-06-15, 14:57
Cevap: Parmaklarla Dans - by kadir008 - 18-06-15, 15:50

Foruma Atla:


Users browsing this thread: 1 Guest(s)