eeliottheking Posted September 13, 2006 Share Posted September 13, 2006 i want to make a script so that when some1 types !map it display Current map is (map name) have no idea what the code so that mta can pull the map name is though. this will be for san andreas all i know is it will start with on *:SIGNAL:mta.command: { if ($3 == !map) mta.text $1 Current map is ? } anyone want to help a newb? Link to comment
CoZ Posted September 13, 2006 Share Posted September 13, 2006 missing word is $mta.race($1) be warned it doesnt work after you have some hundred maps so you could end up with something like on *:SIGNAL:mta.command: { if ($3 == !map) && ($mta.race($1) != unknown) mta.text $1 Current map is $mta.race($1) elseif ($3 == !map) && ($mta.race($1) == unknown) mta.text $1 Sorry, mapname lost } Link to comment
eeliottheking Posted September 13, 2006 Author Share Posted September 13, 2006 dont worry i only have 40 maps now Link to comment
Recommended Posts