Jump to content

lil Toady

MTA Team
  • Posts

    2,318
  • Joined

  • Last visited

Everything posted by lil Toady

  1. lil Toady

    Ping script

    Found nothing in the forum? You search bad There were millions of topics about that... You need mirc and mtama
  2. turn off your firewall and forward ports in your router, if you have one
  3. turn on admin+ in mta:ma (Server > Options > Admin+ check)
  4. I remember the mta team making the mta5.1 where you could make your own skin and choose weapons. It'll never come out..
  5. Easyest way? Thats simple as hell Just type what it says in mirc.. You can't be that stupid P.S: mirc 6.16 is better imho
  6. Go to Add-ons section, ask there or try looking for Jax's and Oli's RPG
  7. um.. You ever played MTA:VC? you can choose your skin there, even in any version of mta 0.x.. And new version of MTA for VC will be probably released on the blue core when the MTA team is done with MTA:SA
  8. Of course it's possible, just start the server and people for your local network are free to connect using your local IP. For mta client not to crash write 'DontGetLatest=1' under 'Main' in the mta.ini located in mta folder.
  9. lil Toady

    Alrighty.

    You forgot to mention that it's Race Mode only Thilly Naku, if you want to play some deathmatch and kill people you need mta0.5 and GTA:VC and/or GTA:3 games
  10. lil Toady

    Ping script

    For MTA 0.5: on *:SIGNAL:mta.connect:{ .timer $+ $1 0 10 mta.pingkick $1 } alias mta.pingkick { var %a = 0 while (%a <= $mta.maxplayers($1)) { if ($mta.ping($1,%a) >= 300) { mta.say $1 Kicking $mta.name($1,%a) for high ping! mta.kick $1 %a } } } For MTA:SA: on *:SIGNAL:mta.connect:{ .timer $+ $1 0 10 mta.pingkick $1 } alias mta.pingkick { var %a = 0 while (%a <= $mta.server($1).cmax) { if ($mta.ping($1,%a) >= 300) { mta.text $1 Kicking $mta.name($1,%a) for high ping! mta.kick $1 %a } } }
  11. if ($1 = !ask) { var %yesno = $rand(1,2) if (%yesno == 1) /msg $chan Yes else /msg $chan No }
  12. on *:SIGNAL:mta.command:{ if ($3 == !allies) { !.timer 1 0 mta.text $1 -----Allies----- !.timer 1 2 mta.text $1 Teppe !.timer 1 4 mta.text $1 No-Fear !.timer 1 6 mta.text $1 Sixty Second Terrorists } } $1 - Server ID (Tab in mta:ma) $2 - Player ID else - Text
  13. then use this if ($3 == !mop) { var %a = 5,%b = 1 while ((%a >= 1) && (%b == 1)) { if ($readini($scriptdir $+ mop.ini,MOPS,%a) == 1) { mta.text $1 mop %a | %b = %a + %b } !dec %a } if (%b <= 5) !writeini -n " $+ $scriptdir $+ mop.ini" MOPS %b 1 }
  14. What you want to do with this script? Here are 2 different codes trying to guess what you need: if ($3 == !mop) { var %a = 1 !writeini -n " $+ $scriptdir $+ mop.ini" MOPS 1 1 while (%a <= 5) { if ($readini($scriptdir $+ mop.ini,MOPS,%a) == 1) { mta.text $1 mop %a !writeini -n " $+ $scriptdir $+ mop.ini" MOPS $calc(%a+1) 1 } !inc %a } } if ($3 == !mop) { var %a = 5,%b = 1 while ((%a >= 1) && (%b == 1)) { if ($readini($scriptdir $+ mop.ini,MOPS,%a) == 1) { mta.text $1 mop %a | %b = %a + %b } !dec %a } if (%b <= 5) !writeini -n " $+ $scriptdir $+ mop.ini" MOPS %b 1 }
  15. lil Toady

    Flood protection

    Sorry, don't really get what you want Bots.. commands..flood.. What you want to protect from spam/flood? MTA:mA Script?
  16. This happens with most multiplayer games
  17. Problem is that you have a high ping on a server, so there's some delay between you and other servers as you're reciving packets with some delay.. Just play on other servers, there's nothing you can do with this lag.
  18. the problem is not in your PC, it's mostly like cause of lag, check your server ping, try to join other servers where you have a lower ping
  19. http://www.multitheftauto.com/docu/inde ... rver_Guide
  20. lil Toady

    MTA Deathmatch mod

    Deathmatch mode is still in development, read about the progress on the blog
  21. you dont need that 'if ($3 == *) {' line at all!.. the 'on *:SIGNAL:mta.text:{' is called when player says something, so you dont need to check if there is a word on *:SIGNAL:mta.text: { if ($3 == brb) { if ($readini($scriptdir $+ brb.ini,BRB,$mta.ip($1,$2)) == 1) { mta.text $1 $mta.nick($1,$2) will be back soon! !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 2 } } elseif ($readini($scriptdir $+ brb.ini,BRB,$mta.ip($1,$2)) == 2) { !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 1 mta.text $1 $mta.nick($1,$2) is back! } } on *:SIGNAL:mta.join: { !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 1 } on *:SIGNAL:mta.command:{ if ($3 == !players) mta.text $1 There are currently $mta.server($1).players players on the server }
  22. don't get why didn't you use my on *:SIGNAL:mta.text:{ example.. but ok, thats your script: on *:SIGNAL:mta.text: { if ($3 == brb) { if ($readini($scriptdir $+ brb.ini,BRB,$mta.ip($1,$2)) == 1) { mta.text $1 $mta.nick($1,$2) will be back soon! !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 2 } } elseif ($readini($scriptdir $+ brb.ini,BRB,$mta.ip($1,$2)) == 2) { !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 1 mta.text $1 $mta.nick($1,$2) is back! } } on *:SIGNAL:mta.join: { !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 1 } on *:SIGNAL:mta.command:{ if ($3 == !players) { var %a = 0,%b while (%a <= $mta.server($1).cmax) { if ($mta.nick($1,%a) != Unknown) %b = $iif(%b,%b $+ $chr(44) $mta.nick($1,%a),$mta.nick($1,%a)) !inc %a } mta.text $1 Players: %b } }
  23. poor pc.. btw, not all computers do have this button
  24. of course you can.. but you can also remove that from the ini thats how i'd do that if i was you: on *:SIGNAL:mta.text: { if ($3 == brb) { mta.text $1 $mta.nick($1,$2) will be back soon! !writeini -n " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) 1 } elseif ($readini($scriptdir $+ brb.ini,BRB,$mta.ip($1,$2))) { !remini " $+ $scriptdir $+ brb.ini" BRB $mta.ip($1,$2) mta.text $1 $mta.nick($1,$2) is back! } }
×
×
  • Create New...