- Ошибка
-
//AMXXPC compile.exe
// by the AMX Mod X Dev Team
//// csr_dispenser.sma
//
// C:\Users\andrii\Desktop\Compiler 1.9.0\csr_dispenser.sma(376) : error 017: undefined symbol "xGetOriginFromDistPlayer"
//
// 1 Error.
// Could not locate output file C:\Users\andrii\Desktop\Compiler 1.9.0\compiled\csr_dispenser.amx (compile failed).
//
// Compilation Time: 2,03 sec
// ----------------------------------------
Press enter to exit ...
- Компилятор
- Локальный
- Amx Mod X
- 1.9.0
- Исходный код
-
public client_PreThink(id)
{
static Float:ftime
ftime = get_gametime()
if(ftime - 0.05 > f_TimePostThink[id]) // sem spamar o think
{
if(g_PlayerMovingDisp[id] && is_user_alive(id))
{
static iEnt; iEnt = FM_NULLENT
while((iEnt = find_ent_by_class(iEnt, dispenser_classmove)))
{
if(entity_get_int(iEnt, EV_INT_iuser2) != id)
continue
if(pev_valid(iEnt))
{
static Float:fOrigin[3]
xGetOriginFromDistPlayer(id, 125.0, fOrigin)
entity_set_origin(iEnt, fOrigin)
drop_to_floor(iEnt)
static entlist[3]
if(find_sphere_class(iEnt, dispenser_classname, 100.0, entlist, 2) || find_sphere_class(iEnt, "player", 20.0, entlist, 2) || TraceCheckCollides(fOrigin, 35.0))
{
entity_set_int(iEnt, EV_INT_sequence, BUILD_DISPENSER_NO)
g_iPlantOk[id] = false
}
else
{
entity_set_int(iEnt, EV_INT_sequence, BUILD_DISPENSER_YES)
g_iPlantOk[id] = true
}
}
}
if(ftime - 1.2 > f_TimePlantHud[id])
{
set_shudmessage
(
0, // r
150, // g
255, // b
100, // alpha
0.04, 0.60,
1.1, // holdtime (tempo exibido na tela)
0.04, // fade in time
0.04, // fade out time
-1, // channel
2, // effect
255, // effect_R
255, // effect_G
255, // effect_B
255, // effect_alpha
0.07 // effect time
)
show_shudmessage(id, "Aperte [E] para plantar^n^t^t^t^t^tO dispenser!")
f_TimePlantHud[id] = ftime
}
}
f_TimePostThink[id] = ftime
}
}
столкнулся с неизвестной ошибкой...
помогите пожалуйста
помогите пожалуйста
В этой теме было размещено решение! Перейти к решению.