Jump to content

[Problema Server] JB


PedoBear.Xd

Recommended Posts

Server: Jb.RangFort.Ro

Nick: AnoNyMus
Grad srv: Detinator
La ce doriti ajutor?: Am o problema, nu inteleg dc la unele mape imi pica serverul, chiar daca toate resursele sunt bagate corespunzator si cand imi pica sv-ul de la mapa imi scrie:

 

 

 

 

GAME SKILL LEVEL:1
Cvar_Set: variable cl_himodels not found
Host_Error: PF_precache_model_I: Model 'models/p_scout.mdl' failed to precache because the item count is over the 512 limit.
Reduce the number of brush models and/or regular models in the map to correct this.
FATAL ERROR: Host_Error: PF_precache_model_I: Model 'models/p_scout.mdl' failed to precache because the item count is over the 512 limit.
Reduce the number of brush models and/or regular models in the map to correct this.
Link to comment
Share on other sites

Nu va inteleg de ce bagati toate prostiile pe server.

Ce garantie ai tu ca site-ul de unde ai download harta respectiva are toate resursele ? Inteleg ca ai pus resursele in folderele respective , insa tu nu ai nici o garantie ca sunt toate fisierele acolo.

 

Este atat de greu sa iti descarci harta , sa o pui la tine in cs si sa o verifici inainte sa o pui pe server?

Daca nu stii cum sa faci asta , iti fac tutorial.

Legat de eroarea care ti-o da , scrie foarte clar acolo.

  • Like 3
Link to comment
Share on other sites

Nu va inteleg de ce bagati toate prostiile pe server.

Ce garantie ai tu ca site-ul de unde ai download harta respectiva are toate resursele ? Inteleg ca ai pus resursele in folderele respective , insa tu nu ai nici o garantie ca sunt toate fisierele acolo.

 

Este atat de greu sa iti descarci harta , sa o pui la tine in cs si sa o verifici inainte sa o pui pe server?

Daca nu stii cum sa faci asta , iti fac tutorial.

Legat de eroarea care ti-o da , scrie foarte clar acolo.

 

 

 

SI legat de asta :

Host_Error: PF_precache_model_I: Model 'models/p_scout.mdl' failed to precache because the item count is over the 512 limit.

Cum rezolv problema

is over the 512 limit

Ca acum server este 20/32 si mie greu sa imi pice serverul cand imi este lumea mai draga =))

Link to comment
Share on other sites

Descarcă toate mapele (chiar toate),de pe o comunitate bazată doar pe asta .

Iar despre :

Cvar_Set: variable cl_himodels not found

Ai un cvar setat şi nu găseşte modelul respectiv . (.mdl)

Dacă nu-l ai,încearcă să-l bagi .

Vezi dacă ai fişierul "p_scout.mdl" ,îl găseşti în models,dacă îl ai,înlocuieşte-l cu altul pe net,se găseşte imediat .

Link to comment
Share on other sites

<_<

failed to precache because the item count is over the 512 limit
>>>

Ai trecut de limitu 512 (models,sounds,sprite)

Poate problema e in library, dar eu sfatuesc sa va folositi de unprecacher.

https://forums.alliedmods.net/showthread.php?p=1506103#post1506103

 

Ori

#include <amxmodx>   
#include <fakemeta> 
 
new const models[][] =  
{ 
   "v_ak47.mdl",
   "v_aug.mdl",
   "v_awp.mdl",
   "v_c4.mdl",
   "v_deagle.mdl",
   "v_elite.mdl",
   "v_famas.mdl",
   "v_fiveseven.mdl",
   "v_flashbang.mdl",
   "v_g3sg1.mdl",
   "v_galil.mdl",
   "v_glock18.mdl",
   "v_hegrenade.mdl",
   "v_knife.mdl",
   "v_m3.mdl",
   "v_m4a1.mdl",
   "v_m249.mdl",
   "v_mac10.mdl",
   "v_mp5.mdl",
   "v_p90.mdl",
   "v_p228.mdl",
   "v_scout.mdl",
   "v_sg550.mdl",
   "v_sg552.mdl",
   "v_smokegrenade.mdl",
   "v_tmp.mdl",
   "v_ump45.mdl",
   "v_usp.mdl",
   "v_xm1014.mdl",
   "w_ak47.mdl",
   "w_assault.mdl",
   "w_aug.mdl",
   "w_awp.mdl",
   "w_backpack.mdl",
   "w_c4.mdl",
   "w_deagle.mdl",
   "w_elite.mdl",
   "w_famas.mdl",
   "w_fiveseven.mdl",
   "w_flashbang.mdl",
   "w_g3sg1.mdl",
   "w_galil.mdl",
   "w_glock18.mdl",
   "w_hegrenade.mdl",
   "w_kevlar.mdl",
   "w_knife.mdl",
   "w_m3.mdl",
   "w_m4a1.mdl",
   "w_m249.mdl",
   "w_mac10.mdl",
   "w_mp5.mdl",
   "w_p90.mdl",
   "w_p228.mdl",
   "w_scout.mdl",
   "w_sg550.mdl",
   "w_sg552.mdl",
   "w_shield.mdl",
   "w_smokegrenade.mdl",
   "w_thighpack.mdl",
   "w_tmp.mdl",
   "w_ump45.mdl",
   "w_usp.mdl",
   "w_xm1014.mdl",
   "pallet_with_bags.mdl",
   "pallet_with_bags2.mdl",
   "palmtree.mdl",
   "PG-150.mdl",
   "player.mdl",
   "pred_plant.mdl",
   "pshell.mdl",
   "rshell.mdl",
   "rshell_big.mdl",
   "bag.mdl",
   "bigtree.mdl",
   "bush.mdl",
   "chick.mdl",
   "fern.mdl",
   "grass.mdl",
   "hostage.mdl",
   "lv_bottle.mdl"
} 
 
public plugin_precache()  
{   
    register_forward(FM_PrecacheModel, "PrecacheModel") 
}  
 
public PrecacheModel(const szModel[])  
{  
    for(new i = 0; i < sizeof(models); i++) 
    { 
        if( containi(szModel, models[i]) != -1 )  
        {  
            forward_return(FMV_CELL, 0)  
            return FMRES_SUPERCEDE  
        }  
    } 
    return FMRES_IGNORED  
}  
Edited by bat
Link to comment
Share on other sites

 

<_<

failed to precache because the item count is over the 512 limit

>>>

Ai trecut de limitu 512 (models,sounds,sprite)

Poate problema e in library, dar eu sfatuesc sa va folositi de unprecacher.

https://forums.alliedmods.net/showthread.php?p=1506103#post1506103

 

Ori

#include <amxmodx>   
#include <fakemeta> 
 
new const models[][] =  
{ 
   "v_ak47.mdl",
   "v_aug.mdl",
   "v_awp.mdl",
   "v_c4.mdl",
   "v_deagle.mdl",
   "v_elite.mdl",
   "v_famas.mdl",
   "v_fiveseven.mdl",
   "v_flashbang.mdl",
   "v_g3sg1.mdl",
   "v_galil.mdl",
   "v_glock18.mdl",
   "v_hegrenade.mdl",
   "v_knife.mdl",
   "v_m3.mdl",
   "v_m4a1.mdl",
   "v_m249.mdl",
   "v_mac10.mdl",
   "v_mp5.mdl",
   "v_p90.mdl",
   "v_p228.mdl",
   "v_scout.mdl",
   "v_sg550.mdl",
   "v_sg552.mdl",
   "v_smokegrenade.mdl",
   "v_tmp.mdl",
   "v_ump45.mdl",
   "v_usp.mdl",
   "v_xm1014.mdl",
   "w_ak47.mdl",
   "w_assault.mdl",
   "w_aug.mdl",
   "w_awp.mdl",
   "w_backpack.mdl",
   "w_c4.mdl",
   "w_deagle.mdl",
   "w_elite.mdl",
   "w_famas.mdl",
   "w_fiveseven.mdl",
   "w_flashbang.mdl",
   "w_g3sg1.mdl",
   "w_galil.mdl",
   "w_glock18.mdl",
   "w_hegrenade.mdl",
   "w_kevlar.mdl",
   "w_knife.mdl",
   "w_m3.mdl",
   "w_m4a1.mdl",
   "w_m249.mdl",
   "w_mac10.mdl",
   "w_mp5.mdl",
   "w_p90.mdl",
   "w_p228.mdl",
   "w_scout.mdl",
   "w_sg550.mdl",
   "w_sg552.mdl",
   "w_shield.mdl",
   "w_smokegrenade.mdl",
   "w_thighpack.mdl",
   "w_tmp.mdl",
   "w_ump45.mdl",
   "w_usp.mdl",
   "w_xm1014.mdl",
   "pallet_with_bags.mdl",
   "pallet_with_bags2.mdl",
   "palmtree.mdl",
   "PG-150.mdl",
   "player.mdl",
   "pred_plant.mdl",
   "pshell.mdl",
   "rshell.mdl",
   "rshell_big.mdl",
   "bag.mdl",
   "bigtree.mdl",
   "bush.mdl",
   "chick.mdl",
   "fern.mdl",
   "grass.mdl",
   "hostage.mdl",
   "lv_bottle.mdl"
} 
 
public plugin_precache()  
{   
    register_forward(FM_PrecacheModel, "PrecacheModel") 
}  
 
public PrecacheModel(const szModel[])  
{  
    for(new i = 0; i < sizeof(models); i++) 
    { 
        if( containi(szModel, models[i]) != -1 )  
        {  
            forward_return(FMV_CELL, 0)  
            return FMRES_SUPERCEDE  
        }  
    } 
    return FMRES_IGNORED  
}  

 

 

 

Si cu aceste doua ce fac ?

Link to comment
Share on other sites

Se vede cu mult ca addonsu nu a fost facut de tine, dar iti zic pe intelesu' incepatorului, mai scoate din .spr .wav .mdl! Adica Modele/Sunete/Spriteuri!

Nu mai trebu nic s mai scoata bai, doar folosesti un unprecacher (http://rangfort.ro/forum/index.php?/topic/10066-problema-server-jbrangfortro/?p=59450) Pentru ca serverul are un limit, daca utilizezi unprecache serverul nu trimite clientului, modelele,sunetele etc.. care sunt default.

Link to comment
Share on other sites

Se vede cu mult ca addonsu nu a fost facut de tine, dar iti zic pe intelesu' incepatorului, mai scoate din .spr .wav .mdl! Adica Modele/Sunete/Spriteuri!

off: In mare parte addonsul a fost creat de mine si te asigur ;).

On:

Nu mai trebu nic s mai scoata bai, doar folosesti un unprecacher (http://rangfort.ro/forum/index.php?/topic/10066-problema-server-jbrangfortro/?p=59450) Pentru ca serverul are un limit, daca utilizezi unprecache serverul nu trimite clientului, modelele,sunetele etc.. care sunt default.

 

Mersi mult pentru acel plugin de UnPrechache de la AlliedMods, acuma merg mapele perfect + NU MAI PICA, LE-AM TESTAT :D va astept pe sv acum ;)

 

 

 

T/C

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...