For the complete documentation index, see llms.txt. This page is also available as Markdown.

GetArchiMonstreInfo

Méthode permettant de connaitre les infos de l'archimonstre détécté

Méthode

map_GetArchiMonstreInfo()

Exemple d'utilisation

Ici on vérifie si un archimonstre est sur la carte, si oui alors on affiche ces informations (ID, Nom, Serveur, Position)

if (map_HasArchiMonstre())
{
    global_SendLogs("Un archimonstre est présent", "green")    
    global_SendLogs(map_GetArchiMonstreInfo(), "green")
}