Jump to content

lil Toady

MTA Team
  • Posts

    2,318
  • Joined

  • Last visited

Everything posted by lil Toady

  1. You have to turn on Admin+ in MTA:mA settings
  2. !.timer 1 2 mta.text $1 SanZoR's Ultimate !trace Script V1.0 Connected! Sanzor, nerd, you have forgotten the nick of the guy who's script you edited, haven't you? You even forgot to remove/change some things. Might work though, with some delay cause of the page is pretty big but w/e. Maybe someday you'll learn to edit other's scripts at least without mistakes..
  3. That is possible with scripting in the upcomming version of MTA
  4. dot in front makes it not show messages like 'timer activated' or 'timer halted', don't remember what '!' does though
  5. Dual core AMD? Get core optimizer drivers from amd.com
  6. I don't think your previous router problems are somehow related to gta2 mp, and i'm sure mta won't break it too
  7. They all are in scripting.html that goes with mtama. If you want to check after 15 seconds, you have to put it into an alias and call the alias, cause everything put in the timer line is parsed instantly and only executed/shown after There's an $iif(condition,if condition do this[,if not do this]) like 'mta.text $1 $iif($mta.nick($1,$2) == lil_Toady,$mta.nick($1,$2) ownz!,$mta.nick($1,$2) sux!)'
  8. First one is possible, second one has been discussed here too many times and probably wont get in (at least in the first release) cause of some issues.
  9. Huh? How would a multiplayer mod break a router?
  10. You shouldn't have edited mta:ma or grs, even just a space pasted in on of those scriptes will cause this error, reinstall both mta:ma and grs
  11. And have you tried to click the archive link on the download page?........ http://archive.apache.org/dist/xml/xerces-c/
  12. You will be able to use your current race maps without any problem, and we'll do our best to include race in the release resource pack
  13. Map editor, of course
  14. Apache's Xerces-C++ XML Parsing library this link? works fine here, and the download is there.. wouldn't be surprised if they banned you lol
  15. Our scripting system allows pretty much, as you could see in the very first tutorial teleports are possible, and about race - yes mta:dm allows you scripting your gamemodes, you can rebuild mta:race exactly how it is right now and even better
  16. Else if they used it much it'd have to go through a big file to check who to unban every minute /me hides
  17. Pft, in here we don't even celebrate xmas that much, New year is the main holiday with presents and stuff!
  18. shh scooby! Im forgetting mirc scripting, was putting 'then' and 'end' all over everywhere instead of brackets writing that And one timer won't be that accurate!
  19. You just took off the line? change 'elseif' to 'if' in the next line then
  20. here's a tempban script i've just written (not tested!) usage: !tempban <#time> (like '!tempban scooby 1 day' - 1 day ban or '!tempban scooby 5 m' - 5 minutes ban) on *:SIGNAL:mta.connect:{ var %a = 1,%ip,%time while (%a <= $ini($scriptdir $+ $1.tempbans.ini,0)) { %ip = $ini($scriptdir $+ $1.tempbans.ini,%a) %time = $readini($scriptdir $+ $1.tempbans.ini,%ip,time) if ($ctime >= %time) mta.tempunban $1 %ip else !.timer 1 $calc(%time - $ctime) mta.tempunban $1 %ip !inc %a } } on *:SIGNAL:mta.command:{ var %a = $iif($4,$iif($mta.getid($1,$4),$v1,-1),$2) if ($3 == !tempban) { if ($mta.level($1,$2) < 3) mta.pm $1 $2 Error - Higher level required elseif (%a == $2) mta.pm $1 $2 Error - You cant tempban yourself elseif (%a == -1) mta.pm $1 $2 Error - Absent ID elseif ($mta.level($1,$2) <= $mta.level($1,%a)) mta.pm $1 $2 Error - Can't ban a player with the same or higher level else { if ($5 isnum) { if (m* iswm $6) { mta.text $1 $mta.nick($1,%a) has been banned for $5 minute $+ $iif($5 != 1,s) $+ , by $mta.nick($1,$2) $+ . $iif($7,Reason: $7-) mta.tempban $1 %a $calc($5 * 60) } elseif (h* iswm $6) { mta.texxt $1 $mta.nick($1,%a) has been banned for $5 hour $+ $iif($5 != 1,s) $+ , by $mta.nick($1,$2) $+ . $iif($7,Reason: $7-) mta.tempban $1 %a $calc($5 * 3600) } elseif (d* iswm $6) { mta.text $1 $mta.nick($1,%a) has been banned for $5 day $+ $iif($5 != 1,s) $+ , by $mta.nick($1,$2) $+ . $iif($7,Reason: $7-) mta.tempban $1 %a $calc($5 * 86400) } else mta.pm $1 $2 Invalid time } else mta.pm $1 $2 Invalid time } } } alias mta.tempban { !writeini " $+ $scriptdir $+ $1.tempbans.ini" $mta.ip($1,$2) nick $mta.nick($1,$2) !writeini " $+ $scriptdir $+ $1.tempbans.ini" $mta.ip($1,$2) time $calc($ctime + $3) mta.ban $1 $2 !.timer 1 $3 mta.tempunban $1 $mta.ip($1,$2) } alias mta.tempunban { mta.unban $1 $2 mta.text $1 $readini($scriptdir $+ $1.tempbans.ini,$2,nick) has been unbanned. (Tempban) !remini " $+ $scriptdir $+ $1.tempbans.ini" $2 }
  21. Why do you think the release date would be given out though?
  22. There already is a TLR clan though, you should have checked the gang section
  23. yes. I clearly see a way to script it to be the same as in single player also
×
×
  • Create New...