Jump to content

Oli

Retired Staff
  • Posts

    1,993
  • Joined

  • Last visited

Everything posted by Oli

  1. lmao, i happened to spend a long period of my life building computers and i can assure you there are very few motherboards from any manafacturer these days that dont have an AGP slot... infact there are few without an 8xAGP slot these days so i dont know where u got that from gf
  2. looking gooood... considering gf was passenger and was overseas giving him a 3 figure ping that was damn impressive.
  3. Oli

    MTAMA Scripting

    my script is currently: 96.3KB using 2318 lines.
  4. ok, we got ULK 9pm GMT saturday, how about FKU vs FMJ 11.00pm GMT saturday?
  5. ahhh i see, didnt know u were in NS u see... my bad
  6. lol pointblank... doesnt usually take 4 pages for ppl to realise there is a new clan around
  7. lmao w715... thought u stopped playing mta after WtF died... too good to stay away isnt it
  8. Oli

    MTAMA Scripting

    well ive got some which im keeping just at the FMJ server atm cos they are constantly being updated... infact ive already updated that warn one too, but not significantly yet, ive just got it so that when i do !ban 5 stop cheating it adds a warn of level 4 to the mtawarn.ini and then instantly bans the people of level 4 warn on entry to the server, this is useful to help against people with proxies. Ill have a look through my script and see if there is anything useful i can extract from it for u guys. And yes panther, u can just remove warns manually from the ini aswell Oh, finally, yes the warn is based on ID number... "!warn 5 no spawnkilling" but the erasewarn is based on name "erasewarn warnedperson" Oh one thing i might mention is that ppl with spaces in their names can mess this script up a bit as mIRC parses the two parts as seperate things.
  9. yeah i did know that... i was wondering how many other ppl recognised the old GGM, hence my previous question.. but as i recall the project kinda died a while back
  10. Oli

    MTAMA Scripting

    ok here goes: The actual warn script is its own alias thats linked to: alias mta.warn { if ($4 != $null) { if ( $readini( "MTAwarn.ini", main, $mta.name($1,$4) ) == 1 ) { if ($5 != $null) { mta.say $1 $mta.name($1,$4) $+ : 2nd warning. 1 more warning and you will be kicked. Reason: $5- writeini "MTAwarn.ini" main $mta.name($1,$4) 2 writeini "MTAwarn.ini" reasons $mta.name($1,$4) $5- } else { mta.say $1 $mta.name($1,$4) $+ : 2nd warning. 1 more warning and you will be kicked. writeini "MTAwarn.ini" main $mta.name($1,$4) 2 } } elseif ( $readini( "MTAwarn.ini", main, $mta.name($1,$4) ) == 2 ) { if ($5 != $null) { mta.say $1 $mta.name($1,$4) $+ : 3rd and final warning. Reason: $5- $+ . Goodbye! mta.kick $1 $4 writeini "MTAwarn.ini" main $mta.name($1,$4) 3 writeini "MTAwarn.ini" reasons $mta.name($1,$4) $5- } else { mta.say $1 $mta.name($1,$4) $+ : 3rd and final warning. Goodbye! mta.kick $1 $4 writeini "MTAwarn.ini" main $mta.name($1,$4) 3 } } else { if ($5 != $null) { mta.say $1 $mta.name($1,$4) $+ : 1st warning. 2 more warnings and you will be kicked. Reason: $5- writeini "MTAwarn.ini" main $mta.name($1,$4) 1 writeini "MTAwarn.ini" reasons $mta.name($1,$4) $5- } else { mta.say $1 $mta.name($1,$4) $+ : 1st warning. 2 more warnings and you will be kicked. writeini "MTAwarn.ini" main $mta.name($1,$4) 1 } } } else { mta.say $1 $mta.name($1,$2) $+ : Syntax - !warn } } Then I have under mta.join: elseif ( $readini( "MTAwarn.ini", main, $mta.name($1,$2) ) == 3 ) { mta.say $1 $mta.name($1,$2) $+ : Access denied - exceeded warn quota writeini "MTAwarn.ini" joinkick $mta.name($1,$2) $mta.ip($1,$2) mta.kick $1 $2 } Under mta.text: elseif (($3 == !warn) && %isadmin. [ $+ [ $1 ] $+ . $+ [ $2 ] ] == true ) { mta.warn $1- } elseif ($3 == !warnings) { if ($4 != $null) { if ( $readini( "MTAwarn.ini", main, $mta.name($1,$4) ) == 1 ) { mta.say $1 $mta.name($1,$4) has been warned 1 time. } elseif ( $readini( "MTAwarn.ini", main, $mta.name($1,$4) ) == 2 ) { mta.say $1 $mta.name($1,$4) has been warned 2 times. } else { mta.say $1 $mta.name($1,$4) has been warned 0 times. } } else { if ( $readini( "MTAwarn.ini", main, $mta.name($1,$2) ) == 1 ) { mta.say $1 $mta.name($1,$2) $+ : you have been warned 1 time. } elseif ( $readini( "MTAwarn.ini", main, $mta.name($1,$2) ) == 2 ) { mta.say $1 $mta.name($1,$2) $+ : you have been warned 2 times. } else { mta.say $1 $mta.name($1,$2) $+ : you have been warned 0 times. } } } elseif (($3 == !erasewarn) && %isadmin. [ $+ [ $1 ] $+ . $+ [ $2 ] ] == true ) { if ($4 != $null) { mta.say $1 $mta.name($1,$2) $+ : Removed warnings on $4 remini "MTAwarn.ini" main $4 remini "MTAwarn.ini" joinkick $4 remini "MTAwarn.ini" reasons $4 } else { mta.say $1 Syntax: !erasewarn } } The !warn part is setup so that only admins using my particular admin script can use it, you can customise that part however you like. Players can find out how many times they have been warned by typing !warnings or can find out how many times another player has been warned by typing !warnings . You can also specify reasons people were warned, ie: !warn 6 speak english , and this would add the reason to the ini as a record. It remembers people who was warned, and kicks them automatically on entry to the server if they were warned 3 times. You can remove people using !erasewarn and this will delete their warn history. (note: the erasewarn function is based on name not ID number). I wrote this code only today, so I will be updating it myself over the next few days.. if i have any large additions ill post them, otherwise you can just modify it yourself to suit yourself.
  11. now thats where i remember sobeit... MNK... i banned him quite a few times at my server i think... and my script got him a few too lol Im amazed to see a team take on a blatent cheater, its like hiring an excon lol.
  12. Oh My God... does that look familiar to anyone??
  13. Oli

    MTAMA Scripting

    yes my admin script uses an away system and a brb system... its even got a "going out for a beer" function. Not hard to script. I have finished work on a warn script now. If anyone wants it then just pm me, i cant be bothered to post it here atm, maybe if a lot of ppl want it i will.
  14. ive actually noticed a lot of little weird things like that on their forums... im definately gonna watch this one with interest
  15. well i certainly know that FMJ at least for 1 will have an efrag server for gta3 and one for VC so ppl will be able to chose at will which to play... I cant wait for gta3:mta 0.4 though... the beta test a month ago reminded me how much i love gta3
  16. Well dunno bout anyone else but bump just kinda confirmed what i was already suspecting about 0.4... and as he says hopefully all these bugs will be squahed soon . Good luck to them.
  17. Oli

    Beta testers

    yeah that looks quite nice, id quite like to try that. Send me a pm with some details or add me to ure msn, mine in down by my sig. cheers
  18. well... i have seen stanton bouncing around a few other teams... not sure whats up with that but hey . Yeah i noticed the similarities of the forum entrance lol... but i was more amused by the blatent use of frontpage for making the website lol (/me hates MS stuff just a tad) But I have stopped by their forum and given them luck as it would seem they need it
  19. Oli

    MTAMA Scripting

    lmao panther... he was in FMJ for like 2 days lol... damn he was like 21 questions kooper add me to ure msn ill give u a hand if u need it.
  20. Oli

    MTAMA Scripting

    yeah thats exactly what my script does... there are different stages of admin (superadmin, admin and moderator) each having a differnt level of access to script functions. They are all prompted to a password as they enter the server. However i cant give it you atm cos a) its not finished... i keep adding stuff as i think of it (like i just made it so superadmins can remove admins and mods from the script using !remove). Ure welcome to try and make it ureself though.. its not that complex once u work out how to do it
  21. Oli

    MTAMA Scripting

    lmao if i did that with my 2000+ line script... on 5 servers... say 16 ppl in each server... i think my CPU might overheat
  22. Oli

    The -=MI=- Clan

    lmao i think u should make ure site banner a bit bigger cos i cant quite see it
  23. Oli

    MTAMA Scripting

    well i havnt said anything that isnt already common knowledge... ill refer to this thread: http://forum.mtavc.com/viewtopic.php?t=7565
  24. Oli

    MTAMA Scripting

    well i am aware that people have tried to create such programs, but there were issues to the way it should be released... ie open source could potentially be very dangerious. I do know more about this but im not sure how much im allowed to say so ill leave it at that...
×
×
  • Create New...