Jump to content

Aeron

Retired Staff
  • Posts

    968
  • Joined

  • Last visited

Everything posted by Aeron

  1. Aeron

    MTAMA Scripting

    THE REASON WHY THE ADMIN CAN'T SEND /MSG'S You have players: ID Nick 0 Black_dragon 1 Wartech 2 MrBump 3 MAD_BOY And you have admins: ID Nick 0 Aeron 1 Blokker MrBump (a player) sends a /msg to Wartech: MrBump typs: "/msg Wartech hello!" MrBump sees: "PM sent: hello!" Wartech sees: "PM from MrBump: hello!" This was fine good no problems. Now Aeron (a admin) sends a /msg to MAD_BOY: Aeron typs: "/msg MAD_BOY bye!" Aeron sees: "PM sent: bye!" NOW LOOK GOOD: MAD_BOY sees: "PM from Black_dragon: bye!" Aeron and Black_dragon has the SAME ID but MTA can't SEE it's from a ADMIN so it gives the NICK of the PLAYER. NOW STOP ASKING WITH
  2. Aeron

    MTAMA Scripting

    admin can send but it gives the nick of the correspinding playerID of the Admin ID it's a bug of mta...
  3. Aeron

    MTAMA Scripting

    v1.20 changes: Manhunt: Nicklist-loop fix Manhunt: Cancel if there are to few players Manhunt: Typo fixed Unban moved to main dialog Scripts dialog Fixed nicklist count bug Ping added $mta.players(Server) added $mta.maxplayers(Server) added Faster script progress New pic: Any more suggestions?
  4. Some handy ASE filters the new game modes: Multi Theft Auto\0.3\Team-play Mutex: MTAVCS 1 if hostname ~!= "*team*" remove Multi Theft Auto\0.3\ManHunt Mutex: MTAVCS 1 if hostname ~!= "*hunt*" remove Note: the words "team" or "hunt" must be in the name of the server (ex: "John's ManHunt server", "Jack's Team-play server") and to get YOUR server in the right tab. also this code must be placed between: Multi Theft Auto\0.3 Mutex: MTAVER 1 if version != "0.3" remove and Multi Theft Auto\0.3\Deathmatch Mutex: MTAVCS 1 if map != "Vice City" remove And of course can your game be filterd simply change the wildcard and name of the game in the code i give above. If you haven't have the 0.3 filter you can find it here http://forum.mtavc.com/viewtopic.php?t=5902 This all must be changed in filters.txt in your ASE folder.
  5. If the admin pm's somebody it gives the nickname of the corresponding Player ID of the Admin ID; that is confusing. ex: (Note: [nick][iD]) 1 Admin: Admin0 2 Players : Player0 and Player1 Admin0 pm's player1 and player1 sees: "PM from player0 blaat"
  6. Ok. I'll fix those problems later today Manhunt fixes: 1. Empty-nicklist-loop 2. To many players to play. I also gonna make VIP: 2 teams, 1 VIP, the team must kill each other VIP Any suggestions/fixes for team-play?
  7. Aeron

    MTAMA Scripting

    w00t at least another real mIRC scripter!
  8. ill check it if i'm @ home
  9. Aeron

    MTAMA Scripting

    I think a put a "Game" menu in MTAMA so it auto load games unload games on the file name: [game]manhunt.mrc [game]team.mrc [script]handy.mrc I'm on skool now so i can't program it now
  10. Aeron

    MTAMA Scripting

    Kicking inactive joined-users: alias mta.join { $+(.timerIK,$1,$2) 1 60 mta.kick $1 $2 } alias mta.text { $+(.timerIK,$1,$2) off } alias mta.kill { $+(.timerIK,$1,$2) off } alias mta.action { $+(.timerIK,$1,$2) off } alais mta.pm { $+(.timerIK,$1,$2) off } (IK in timerIK stands for Idle Kick) (Untested)
  11. Aeron

    MTAMA Scripting

    .timerBLAH .timerBLAH 0 60 mta.say 1 BLAAT this commands say's endless every 60 seconds BLAAT in server #1
  12. The golden rule: DON'T EDIT MY SCRIPTS!!!!!!!!! (i put in a crc check in because else the l33t scripters can abuse the netcode)
  13. Aeron

    MTAMA Scripting

    Color codes kick: alias mta.join { if ($chr(1) isin $mta.name($1,$2)) { mta.say $1 $mta.name($1,$2) Reason: Color Codes mta.kick $1 $2 } } alias mta.text { if ($chr(1) isin $3-) { mta.say $1 $mta.name($1,$2) Reason: Color Codes mta.kick $1 $2 } } Votekick: ("!votekick " to activate, "!vote" to vote) alias mta.text { if ($3 == !votekick) { if (%vote.nick. [ $+ [ $1 ] ] == $null) { if ($ini($+(",$scriptdir,$1,.ini,"),ID $+ $4)) { set %vote.nick. [ $+ [ $1 ] ] $4 set %vote.voters. [ $+ [ $1 ] ] $null mta.say $1 Votekick "!vote" if u want that $mta.name($1,$4) shall be kicked. [ $calc($left($did(mta,$1 $+ 21),2) / 2) votes needed][30 sec] .timervote [ $+ [ $1 ] ] 1 30 mta.vote $1 } else mta.say $1 Give up an existing ID-number: "!votekick <#ID"> } else mta.say $1 Another votekick is running: $mta.name($1,%vote.nick. [ $+ [ $1 ] ]) } if (($3 == !vote) && (%vote.nick. [ $+ [ $1 ] ] != $null)) { if ($2 !isin %vote.voters. [ $+ [ $1 ] ]) { %vote.voters. [ $+ [ $1 ] ] = %vote.voters. [ $+ [ $1 ] ] $2 mta.say $1 $numtok(%vote.voters. [ $+ [ $1 ] ],32) votes for $mta.name($1,%vote.nick. [ $+ [ $1 ] ]) if ($numtok(%vote.voters. [ $+ [ $1 ] ],32) >= $calc($left($did(mta,$1 $+ 21),2) / 2)) { mta.say $1 $mta.name($1,%vote.nick. [ $+ [ $1 ] ]) $numtok(%vote.voters. [ $+ [ $1 ] ],32) votes ur out! mta.kick $1 %vote.nick. [ $+ [ $1 ] ] unset %vote.nick. [ $+ [ $1 ] ] unset %vote.voters. [ $+ [ $1 ] ] .timervote [ $+ [ $1 ] ] off } } else mta.say $1 $mta.name($1,$2) You have already voted } } alias mta.vote { mta.say $1 Vote kick cancelled: $mta.name($1,%vote.nick. [ $+ [ $1 ] ]) unset %vote.nick. [ $+ [ $1 ] ] unset %vote.voters. [ $+ [ $1 ] ] } Caps kick: alias mta.text { if (($calc($len($3-) - $len($removecs($3-,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z))) >= $calc($len($3-) * 0.5)) && ($len($3-) >= 5)) { mta.say $1 $mta.name($1,$2) Reason: Caps mta.kick $1 $2 } } Note: You can't have 2 "alias mta.text" 's (And other aliases) in 1 script you need to put it together: alias mta.text { + [code] alias mta.text { = [code] alias mta.text {
  14. In admin box: "!mh on/off" "!team on/off" In status box // remote script: "/mh server on/off" "/team server on/off" v1.19 fixes: 1. Warning if $version is lower then 6.12 2. Empty nicklist error 3. Unban ip supported 4. Auto-close Options dialog when MTAMA dialog is closed 5. Renamed to MTA mIRC Admin
  15. 1. Script can be activated on Admin text: "!mh on/off" or "!team on/off" 2. Scripts must be loaded in Remote not Aliases
  16. i script that later now changeing my conenction script for 0.3 (which i can't even play)
  17. 1. Windows XP SP 1 2. Modem: Com 21, Router: (?), Network Card: Realtek RTL9139 Family PCI Fast Ethernet NIC 3. H:\Grand Theft Auto Vice City 4. H:\Program Files\MTA 5. Yes. 6. Delted all files including Register-key's 7. 1.0 No-CD crack 8. Evrey time 9. Yes, Yes.
  18. Aeron

    Votekick

    Vote kick already scripted. KFU don't lock the topic of powerload;)
  19. Hmmz IF mta send the health code my mIRC script can check
  20. BLAH that was my script!!!!! my connection is soon availble IF MrBump approves it
  21. Hmmz i think it was one of mine... its say's my name if i type "!info"
  22. Aeron

    Server tools?

    dunno, My connection is soon possible to download IF MrBump approves IT
×
×
  • Create New...