World Map cs CZ - Reetus/ClassicAssist GitHub Wiki

Seznam příkazů ClassicAssist

Generováno na 15.12.2024 3:30:41
Verze: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
PoodyCZ(Dorchaide)

Mapa světa

AddMapMarker

Podpis metody:

Void AddMapMarker(System.String, Int32, Int32, Int32, Int32, System.String)

Parametry

  • name: Řetězec reprezentující název, např. "Snoopy".
  • x: Souřadnice X.
  • y: Souřadnice Y.
  • facet: Číslo - viz popisek.
  • zoomlevel: Číslo - viz popisek. (Volitelný)
  • iconname: Řetězec - viz popisek. (Volitelný)

Popis:

Adds a marker on the world map

Příklad:

AddMapMarker("Treasure", 1000, 1000, 0)  

ClearMapMarkers

Podpis metody:

Void ClearMapMarkers()

Popis:

Clears all map markers

Příklad:

ClearMapMarkers()  

RemoveMapMarker

Podpis metody:

Void RemoveMapMarker(System.String)

Parametry

  • name: Řetězec - viz popisek.

Popis:

Removes all map markers with the specified name from the world map

Příklad:

RemoveMapMarker("Treasure")