Předmět Autor Datum
Vyřešeno, lock.…
Officer 09.06.2012 11:11
Officer
Bylo by vhodné, kdyby ses podělil o řešení. Jistě nejsi sám, kdo má podobný problém ;-)
vlk56 09.06.2012 13:34
vlk56
#include <amxmodx> #include <cstrike> #include <hamsandwich> new const PLUGIN[] = "Player models all…
Officer 09.06.2012 14:13
Officer
lofs
adwr 16.06.2012 11:20
adwr
pls mas skype ja tomu nechapem
ferooooooooooooooooo 24.07.2012 19:52
ferooooooooooooooooo
pls mas skype ? :) poslední
STOP 16.04.2014 23:44
STOP
#include <amxmodx>
#include <cstrike>
#include <hamsandwich>

new const PLUGIN[] = "Player models all"
new const VERSION[] = "0.1"
new const AUTHOR[] = "Lahvicka"
    
public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    RegisterHam(Ham_Spawn, "player", "FwH_Spawn", 1)
}

public plugin_precache()
{
    precache_model("models/player/news_t/news_t.mdl")
    precache_model("models/player/news_ct/news_ct.mdl")  
}

public FwH_Spawn(id)
{
    if(!is_user_alive(id))    return PLUGIN_CONTINUE
    
    if(cs_get_user_team(id) == CS_TEAM_T)
        cs_set_user_model(id,"news_t")
        
    if(cs_get_user_team(id) == CS_TEAM_CT)
        cs_set_user_model(id,"news_ct")
        
    return PLUGIN_CONTINUE
} 
/* AMXX-Studio Notes - DO NOT MODIFY BELOW HERE
*{\\ rtf1\\ ansi\\ deff0{\\ fonttbl{\\ f0\\ fnil Tahoma;}}\n\\ viewkind4\\ uc1\\ pard\\ lang1029\\ f0\\ fs16 \n\\ par }
*/  

Zpět do poradny Odpovědět na původní otázku Nahoru