CoZ
Members-
Posts
598 -
Joined
-
Last visited
Everything posted by CoZ
-
i have that with all maps at http://center.mtasa.com/ too ....
-
with the v1.1.1 or v1.1 race server and mta:ma v4.13 or higher and if server is on same computer make sure it looks like
-
bank in SA wont work - are you sure you have the mta:ma mta-sa compatible version ? only you can install scripts... just like only you can open your files on your computer
-
keep up the good work
-
yes but dont ask me to make it though, im not that good
-
oh, im sorry for that. it is MTA:SA you need ]MTA:mA v4.0 (MTA:SA compatible) .. first sticky topic in add-ons yes .. but not two of the same events but you can do .. example on *:SIGNAL:mta.command:{ if ($3 == !command1} { mta.text $1 command 1 } elseif ($3 == !blabla2} { mta.text $1 blabla2 } }
-
ive been running mta plus xfire for months now no (significantly extra) lockups, disconnects, reboots etc .. so basically no problems here - only thing is it sees mta as gta but i dont mind that ( and one other thing is xfire + map editor is a bad idea it warps objects for a few seconds- but i can live with that) my xfire recorded 654 hours total gta hours so far .. you should be able to get it working so mta plus xfire CAN work well based on that poster has problems with other games as well , this is probably more related to your copy of xfire than mta or the combination xfire+mta thats not a solution, not even a workaround or .. do you think this is considered a solution too patient : "doctor , i got a splitting headache" doctor: "oh ok.. just place your head on the wooden block .. just before the basket" .... "this may sting a bit" sjeesh
-
why does www.mtasa/mtavc.com go to news first ?
CoZ replied to CoZ's topic in Site/Forum/Discord/Mantis/Wiki related
hmmm .. hope he doesnt forget it then because earlier in the topic he wrote -
why does www.mtasa/mtavc.com go to news first ?
CoZ replied to CoZ's topic in Site/Forum/Discord/Mantis/Wiki related
i thought harry ? . or is he only managing the center site ? -
i meant mta:ma ... i know it cant (be a quickfix) in MRA .. used mra as a example - if its in mra:ma i can force the remote admins to use mta:ma i tried every window, button, option whatever in mta:ma .. cant find it so far
-
be glad there IS a 14 year left that minds about grammar but if correcting grammar or nitpicking about it is the only contribution... thats not fun either
-
besides of course the update to the anticheat which hasent been updated ... in .. uhhh ... ever ? and yes i know dm is bigger priority
-
anything guys from logfiles to pictures to stories, movies ? bloopers when making movies ?? idk http://video.google.com/videoplay?docid ... 2027707714 share them funny mta moments
-
suggestion it sometimes happens that two remote admins are online with the normal mta remote admin tool - but it can be confusing ingame to a player if 'admin' looks like a scizofrene talking to himself or says things twice --- okok i could say it annoys a lot when several admins decide to chitchat with ingame players or eachother instead of stay to admin related messages only .. and i could tell them not to , but still would it be possible to get a checkmark 'include nickname in chat' so when admin types it will show the nick set in MA ingame so basically a option to have admin messages be mta.text $1 adminnick $3 (i learned just enough mirc to maybe do this myself, but since its your script and its looking really complex plus i remember something about reading its protected ... )
-
why does www.mtasa/mtavc.com go to news first ?
CoZ replied to CoZ's topic in Site/Forum/Discord/Mantis/Wiki related
Are they fricking blind or somethin? Everyone is just lazy to read, their target is only the download link, not the text around it yes .. by the thousands of 'em i doubt what will be the result of browsing my sever log for the things said by 'Player' but . yes its basically there on the download site , but its said very subtle i agree on paul527 (edit i agreed on the part where it was huge font , clear , and hard to miss maybe there is a typo or the actuall text can be improved .. ) -
1. nicelly spotted MD_Reptile 2 i wonder how much time this feature took ... ah well .. nvm
-
nothing personal but just stfu and let the team work on it in this rate the team is spending more time on forum explaining that they're still working on it than actuallt getting stuff done
-
why does www.mtasa/mtavc.com go to news first ?
CoZ replied to CoZ's topic in Site/Forum/Discord/Mantis/Wiki related
almost month later no big changes to site k .. so its decided that news is going to stay as the FP .. well , thats not a bad choise* .. but pretty please with sugar on top (*k.. maybe, maybe not.. but well .. ill just drop the part about a extra 'home' frontpage thingy) how hard is it to include at least a -bigger and more clear - notice on the download page that SA:DM is not yet released and atm SA:Race is although probably is clear for people that actually take the time to read the site, the blog, the download page and the forum.. it can be improved drastically - because we all know a lot of people dont read carefully -
\why is there a piece missing of your lemming avatar ?
-
the mta ingame console has some builtin commands ( type help ) so unless you made some script commands already and a command to show the script commands you can only see the normal console commands so if i need to expand my example with a command to show the current commands on *:SIGNAL:mta.text:{ if (hello isin $3-) { mta.text $1 Automessage: Hello world } } on *:SIGNAL:mta.command: { ;Parameters: ;$1 = Server ;$2 = ID ;$3 = Command ;$4- = Parameters if ($3 == !currentmap) { mta.text $1 Currentmap: $mta.race(1) } elseif ($3 == !testme) { mta.pm $1 $2 Test completed } elseif ($3 == !commands) { mta.pm $1 $2 Current Usable script commands : mta.pm $1 $2 !commands, !testme, !currentmap, hello } }
-
did you edit the script ? or is it still default ? if you edited it. include the source .. duh
-
try pressing f1 in script editor try googling on mirc script read a few and get the feel for it also .. learn some english i tried to read your question 5 times , but .. what the f*ck are you saying ???
-
well ... its just a matter of knowing how to program in the first place then knowing all mta specific commands you can use (because of what is in mta:ma) in your script - and there should be a nice scripting.html (this for SA) file to guide you that readme is a bit odd formatted imho if you dont know scripting too well but but basically this is a example script of course its also possible to use buildin mirc script variables etc besides the mta specific ones on *:SIGNAL:mta.text:{ if (hello isin $3-) { mta.text $1 Automessage: Hello world } } on *:SIGNAL:mta.command: { ;Parameters: ;$1 = Server ;$2 = ID ;$3 = Command ;$4- = Parameters if ($3 == !currentmap) { mta.text $1 Currentmap: $mta.race(1) } elseif ($3 == !testme) { mta.pm $1 $2 Test completed } } note how there are two major blocks of code in this example these blocks are called EVENTS on *:SIGNAL:mta.text:{ } and on *:SIGNAL:mta.command: { } inside these the first EVENT on *:SIGNAL:mta.text:{ } the script responds on general typed text in the second block on *:SIGNAL:mta.command: { } the script responds to specific commands.. commands prefixed by a exclamation mark note how you always should mind the { } 's on *:SIGNAL:mta.command: { if (!command == $3 ) { do this } elseif { do that } }
-
just add a timer to the !giveme command? oh i reread it a bit ..if its someone else running scripts on your server its about time to change admin/rcon pw's if its someone with some sort of memory hax .. uhhhm .. i dunno , but i dont know mta vice really good
