[Ajuda] Warning DCC_FindChannelByName - Versão de Impressão +- Portal SAMP (https://portalsamp.com) +-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5) +--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6) +--- Tópico: [Ajuda] Warning DCC_FindChannelByName (/showthread.php?tid=1877) |
Warning DCC_FindChannelByName - Jhames - 29/11/2021 Estou recebendo um aviso ao usar "DCC_FindChannelByName". Onde eu estou errando? Obrigado a todos. code: Código: printf("Channel ID: %d", DCC_FindChannelByName("log-server")); Warning: Código: warning 213: tag mismatch: expected tags "Float", or none ("_"); but found "DCC_Channel" RE: Warning DCC_FindChannelByName - Dr Editor - 29/11/2021 Tenta incluir a tag original, caso contrário use tag nula. Uma das duas vai resolver! Tag DCC_Channel: Código: DCC_Channel:DCC_FindChannelByName("log-server") Tag nula: Código: _:DCC_FindChannelByName("log-server") |