mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Fixed errors reportde by karlos
This commit is contained in:
parent
ee3404fea0
commit
f595be47dc
@ -22,21 +22,21 @@ stock get_build(classname[], value, number=0,{Float,Sql,Result,_}:...)
|
||||
return ns_get_build(classname, value, number)
|
||||
|
||||
stock get_private_i(index, offset, linuxdiff=5)
|
||||
return get_offset_int(index, offset, linuxdiff)
|
||||
return get_pdata_int(index, offset, linuxdiff)
|
||||
|
||||
stock set_private_i(index, offset, value, linuxdiff=5)
|
||||
{
|
||||
return set_private_i(index, offset, value, linuxdiff)
|
||||
return set_pdata_int(index, offset, value, linuxdiff)
|
||||
}
|
||||
|
||||
stock Float:get_private_f(index, offset, linuxdiff=5)
|
||||
{
|
||||
return get_private_f(index, offset, linuxdiff)
|
||||
return get_pdata_float(index, offset, linuxdiff)
|
||||
}
|
||||
|
||||
stock Float:set_private_f(index, offset, Float:value, linuxdiff=5)
|
||||
{
|
||||
return set_private_f(index, offset, value, linuxdiff)
|
||||
return set_pdata_float(index, offset, value, linuxdiff)
|
||||
}
|
||||
|
||||
stock make_string(value[])
|
||||
@ -52,7 +52,7 @@ stock string(value, ret[])
|
||||
stock gpgobals_time()
|
||||
return halflife_time()
|
||||
|
||||
stock get_range(ida, idb)
|
||||
stock Float:get_range(ida, idb)
|
||||
return entity_range(ida, idb)
|
||||
|
||||
stock supercede()
|
||||
|
Loading…
Reference in New Issue
Block a user