luszczki1 Posted April 27, 2012 Share Posted April 27, 2012 (edited) Witam mam problem otóz gdy dana osoba (gracz) wpisze /Taxi To pisze Dostałes wezwanie Spojrz na mape i chciałbym zzrobić tak żeby To się wyswietlalo danej frakcji a nie wszystkim. Daje tu kod: function taxiCommand ( thePlayer, command ) local team = getTeamFromName ( "Taxi" ) local gracz = getRandomPlayer () local taxit = getPlayersInTeam ( team ) local ile = countPlayersInTeam ( team ) if ile == 0 then outputChatBox ( "Aktulnie nie ma taksowkarzy na serwerze. Przepraszamy!", thePlayer, 255, 0, 0, false ) else outputChatBox ("Taxi jest juz w drodze", thePlayer, 255, 255, 0, false ) if getPlayerTeam ( gracz ) == team then blip = createBlipAttachedTo ( thePlayer, 53, 1, 255, 0, 0, 0, 0, 99999.0, taxit ) outputChatBox ("Masz klienta! Patrz na mapke!", 255, 255, 0, false ) end end end addCommandHandler ( "taxi", taxiCommand ) function taxiCancelCommand ( thePlayer, command ) local team = getTeamFromName ( "Taxi" ) local gracz = getRandomPlayer () local taxit = getPlayersInTeam ( team ) outputChatBox ("Taxi odwolano", thePlayer, 255, 255, 0, false ) destroyElement ( blip ) if getPlayerTeam ( gracz ) == team then outputChatBox ("Twoj klient odwolal taxi.", 255, 255, 0, false ) end end addCommandHandler ( "taxix", taxiCancelCommand ) function allTaxiCancelCommand ( ) local team = getTeamFromName ( "Taxi" ) local gracz = getRandomPlayer () local taxit = getPlayersInTeam ( team ) if getPlayerTeam ( gracz ) == team then destroyElement ( blip ) outputChatBox ( "Usunieto punkty na mapie.", taxit, 255, 255, 255, false ) end end addCommandHandler ( "usuntaxi", allTaxiCancelCommand ) .......................... Proszę bardzo o pomoc. .......................... Edited April 30, 2012 by Guest Link to comment
Orange_ Posted April 27, 2012 Share Posted April 27, 2012 używaj [lua] albo się pogniewam : Link to comment
luszczki1 Posted April 28, 2012 Author Share Posted April 28, 2012 o co ci chodzi człowieku?- Nie wszyscy potrafią lua! Link to comment
Tosti Posted April 29, 2012 Share Posted April 29, 2012 [lua] to kod zeby było jakoś odrębnione niewiem jak to nazwać... część posta w którym pokazujesz kod pliku więc daj przed kodem [lua] a na końcu [/lua] i to powinno potem wyglądać tak: [lua] kod trolololololo [/lua] Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now