Jump to content

lil Toady

Retired Staff
  • Posts

    2,318
  • Joined

  • Last visited

Posts posted by lil Toady

  1. what happens if i upload my map without those scripst? coz i cant use them.

    will you can use the map without the scripts??

    actually you dont have to upload any scripts for maps, that's QA Team's job to add scripts to your maps

  2. with reference to countdown...I don't think there should be one... you saw it happening with gta 4 trailer countdown> site down. I know we have to put this in perspective: sadly MTA isn't nearly as well known as gta4, but anyhow don't take the risk of overload by setting up a countdown...(the surprise will actually be much nicer when it finally comes unannounced)

    I believe it will have a list of mirrors. Look at race download page

  3. Why Not make a update central to it ? When a new update comes eks:

    You are going in to Mta:DM. and when you have found a server to play on it comes! NEW update ready to download! When you have updated it will come a readme file. whits is showing what updates the Mta Team have done..

    And have a lock afther update thing in the mta file! wher the game and all that is! like you are going on start. mta the it come Update central :) That culd have been wery good for the Mta team to reals it faster :P only a tips :P if it can be done, think on it!

    It's done nearly like it but not public

  4. eheh, buy kick and ban? cool, someday you'll find out that every player is banned, even better to buy an !addban and do '!addban 0.0.0.0' :lol:

    And buy wins stats heh? like i win 1 race and buy few more wins so it says that i've won 23532523 races? kewl

  5. Still, they are being very vague IMO. They also mention in the interview that they are currently planning public tests/releases.

    That's totally contradictory to what they have been saying all along:

    you guys were saying that the tools were still to be finished + was time consuming + release/pub testing aren't coming anytime soon...)

    It's also cold in africa

  6. Here, i haven't tested though. You have to do a PHP file with method GET $_GET['name'] and $_GET['pass'] and it will save stuff. The file should only output 1 line, Like 'Successfully registered' or something

    on *:SIGNAL:mta.command:{
     if ($3 == !register) mta.register $1 $2 PASSWORD
    }
    alias mta.register {
     set %mta.reg.host = www.example.com
     set %mta.reg.path = /mta/register.php
     set %mta.reg.data. [ $+ [ $mta.ip($1,$2) ] ] $1-3
     if (!$sock($+(mta.register.,$mta.ip($1,$2)))) sockopen $+(mta.register.,$mta.ip($1,$2)) %mta.reg.host 80
    }
    on *:SOCKOPEN:mta.register.*:{
     tokenize 32 %mta.reg.data. [ $+ [ $right($sockname,-13) ] ]
     if ($sockerr > 0) {
       sockclose $sockname
       mta.text $1 Register: An error has occured. (socket error)
     }
     else {
       sockwrite -n $sockname GET $+(%mta.reg.path,?name=,$mta.nick($1,$2),&pass=,$3) HTTP/1.1
       sockwrite -n $sockname User-Agent: MSIE 6.0
       sockwrite -n $sockname Host: %mta.reg.host
       sockwrite $sockname $crlf 
     }
    }
    on *:SOCKCLOSE:mta.register.*:{
     unset %mta.reg.data. [ $+ [ $right($sockname,-13) ] ]
    }
    on *:SOCKREAD:mta.register.*:{
     sockread %reg
     if (%reg) {
       tokenize 32 %mta.reg.data. [ $+ [ $right($sockname,-13) ] ]
       mta.pm $1 $2 %reg
     }
    }

    P.S: dont forget to change the lines

    set %mta.reg.host = www.example.com
    set %mta.reg.path = /mta/register.php

  7. on *:TEXT:*:#:{
     %serverID = 1
     var %a = $iif($2,$iif($mta.nick(%serverID,$2) != $null,$2,$mta.getid(%serverID,$2))) 
     if ($1 == !freeze) {
       if ($nick !isop $chan) /msg $chan 4Failed: need to be level 5 to use the command
       elseif (!%a) /msg $chan 4Failed: Absent ID
       else /mta.freeze %serverID %a
     }
    }

    if you used $gus.admin($1,$2) or $mta.admin($1,$2) it doesn't mean you can use it with $irc.admin($1,$2) onder on Text function the $1 and $2 are the first and second word so it wont work

×
×
  • Create New...