SA-MP Forums Archive
Viewing map names in string - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Viewing map names in string (/showthread.php?tid=499320)



Viewing map names in string - ConnorHunter - 07.03.2014

How would I make a string display the map name, or mode ect

Something like GetMapName or something along those lines.


Re: Viewing map names in string - CutX - 07.03.2014

you could define the mapname on top of you script

pawn Код:
#define mapname SomeAwesomeMap
and then set it in OnGamemodeInit
pawn Код:
SendRconCommand("mapname "mapname"");
you can use the map name in a string like this
pawn Код:
new string[] = mapname;
now "string" will hold the defined mapname


btw. you could also load the mapname from somewhere, making it more dynamic


Quote:
Originally Posted by newbienoob
Посмотреть сообщение
nice!didn't know that myself


Re: Viewing map names in string - newbienoob - 07.03.2014

https://sampwiki.blast.hk/wiki/GetServerVarAsString
?