Jump to content

cyklopas

Members
  • Posts

    14
  • Joined

  • Last visited

Details

  • Gang
    Ms-13
  • Occupation
    School

cyklopas's Achievements

Square

Square (6/54)

0

Reputation

  1. I'm not sure, but I think you should add that spike system into the ACL for PD. As I said, I'm not sure. Off Topic: Are you lithuanian?
  2. It's a part of GM, so I basically helped that guy.
  3. Dear mister varez, How about you RE-READ the main post 1000 times, and come back again, thinking and telling me what's OFF TOPIC and ON TOPIC, and the difference between them. Thank You. Your sincerelly, cyklopas.
  4. Yeah, I can see that. Thanks for the info. I'll use more of these in future.
  5. At the end, you gotta add Hunter vehicle changer, and then you PWN others.
  6. The /do command: function input_Console ( text ) --when a player types in the console --split the command by spaces (ASCII 32) and get the first piece of text local command = gettok ( text, 1, 32 ) --if the first piece of text was "do", if ( command == "do" ) then --get the player's name local playerName = getPlayerName ( source ) -- get the action text by substracting the first three characters do") local actionText = string.sub ( text, 3 ) -- announce the me command into the chatbox outputChatBox ( " *" .. actionText .. "* ((" .. getPlayerName( source ) .. "))", root, 255, 40, 80, true ) end end addEventHandler ( "onConsole", getRootElement(), input_Console ) -- add an event handler for onConsole The /my command The /my command: function input_Console ( text ) local command = gettok (text, 1, 32 ) if ( command == "my" ) then local playerName = getPlayerName ( source ) local actionText = string.sub ( text, 3 ) outputChatBox ( " *" .. playerName .. "'s" .. actionText .. " ", root, 255, 40, 80, true ) end end addEventHandler ( "onConsole", getRootElement(), input_Console ) The /ad command: function input_Console ( text ) --split the command by spaces (ASCII 32) and get the first piece of text local command = gettok ( text, 1, 32 ) --if the first piece of text was "do", if ( command == "ad" ) then --get the player's name local playerName = getPlayerName ( source ) -- get the action text by substracting the first three characters ("ad ") local actionText = string.sub ( text, 3 ) -- announce the ad command into the chatbox outputChatBox ( " [AD]: " .. actionText .. " ((" .. getPlayerName( source ) .. "))", root, 150, 40, 80, true ) end end addEventHandler ( "onConsole", getRootElement(), input_Console ) -- add an event handler for onConsole *No rights reserved. Written by me.
  7. Well, whoever is familiar to Roleplay, must know what "/do" is used for. So yeah. It's my first normal script. And whoever doesn't know what /my command does, I'll explain you... For example your nickname is Doctor. You type /my balls are big. And here comes the screen: *Doctor's balls are big. Thanks for downloading and helping the project. Version 1.0 DOWNLOAD: Here. Version 2.0 DOWNLOAD: Here. Changelog: Version 2.0- Added the /my command. Thanks to: Me- the main idea. ThaCoinz- Bug Fixing
  8. Hello guys. We need a talented scripter for MTA. Please send me an email at [email protected]
  9. Oh yeah... I voted for MTA... But its not even at 6th place. IT MUST BE FIRST!!!!! Dont let any stupid Garrys mod win!!!! WE MUST WIN!!!!
  10. Oh yeah... I voted for MTA... But its not even at 6th place. IT MUST BE FIRST!!!!! Dont let any stupid Garrys mod win!!!! WE MUST WIN!!!!
  11. You have anti-virus programs? Sure you do.... Try turning them off... Now try starting server again.
×
×
  • Create New...