
22.08.2021, 05:06
|
|
Флудер
Регистрация: 06.11.2017
Сообщений: 2,759
С нами:
4483143
Репутация:
183
|
|
Сообщение от Smeruxa
Проверяет активность текст дравов ( sf api crmp )
C++:
Код:
bool
check_textdraw_active
(
)
{
bool
text_draw_active
=
false
;
for
(
int
i
=
0
;
i
getSAMP
(
)
->
getNetGame
(
)
->
pools
->
textdrawPool
->
IsExists
(
i
)
)
text_draw_active
=
true
;
}
return
text_draw_active
;
}
C++:
Код:
bool
check_textdraw_active
(
)
{
for
(
int
i
=
0
;
i
getSAMP
(
)
->
getNetGame
(
)
->
pools
->
textdrawPool
->
IsExists
(
i
)
)
return
true
;
}
return
false
;
}
|
|
|