Jump to content

unknooooown

Members
  • Posts

    259
  • Joined

  • Last visited

Everything posted by unknooooown

  1. I'm gonna add that for the version Thanks for the suggestion. Also gonna add some questions that only admins will be able to use.. Like serial and ip.
  2. Thank you. Hope you like it
  3. Good point Lol... I'll have to write a fix tomorrow Thanks for pointing it out.
  4. I have released the first version of the bot to the community: https://community.multitheftauto.com/index.php?p=resources&s=details&id=3525 Enjoy Please report any bugs here so I can fix them asap!
  5. Guess I could make an xml file where people can change the settings. Probably makes it a little more userfriendly like that.
  6. After making my AntiHorn Resource the other day, someone asked me to make a antiAFK resource for servers. And since I knew that it could be done in a few minutes, I accepted the challenge and made the resource. Just wanted to share it here on the forums in case any Race server owners needs it. The resource can be found here. Description: If you need any changes for the resource, please let me know so I can update it
  7. Noticed a few people on a race server the other day talk about how annoying it is when people race with H pressed down, spamming the horn. I decided to make a small resource that kicks a player if he/her holds H down for 10 secs. The amount of time allowed can be changed in the script. Just wanted to share in case someone need it https://community.multitheftauto.com/index.php?p=resources&s=details&id=3508
  8. You want to get alpha? If you want to change the alpha of the text, just edit it in ' color ' - Wherever that is.. I can only see the argument.
  9. Good ideas Oz! - I am gonna add a database for the bot tonight so it can save info about players. About the Idletime, that is already added But I really like the ideas of the highest player count. etc.
  10. Thanks JR10 If anyone has any ideas for things I should add to the bot, please let me know! It is VERY easy to add new questions and answers to it, so we might as well add as much as possible Look at the list in the start of the thread to see which questions are already supported. I update the list everytime I add something new.
  11. Lost all of my files the other day, so the project is on standby for now.
  12. That is the plan. Not sure if I will use the XML or SQLite system yet. Probably gonna be XML as that is the easiest to edit for most people. I am gonna make it very userfriendly so everyone can edit it to their needs. I will also add a function so people/admins can 'teach' the bot new questions/answers by command ingame, so they don't have to access the XML file. And thank you Solidsnake14, Kenix and FatalTerror
  13. Thanks for the replies I'll keep working on this so I can share it with the community Just posted a small update below the YouTube link. Have a look at it. ( 200 posts )
  14. ----------------------------------------------------------------------------------------------------------------------------------------------- v1.0.0 has been released. Get it here. Description for v1.0.0: ----------------------------------------------------------------------------------------------------------------------------------------------- Ohai!.. Didn't see you there. Just wanted to start a WIP thread for my wBot project. I am trying to make a bot that detects certain trigger and keywords in chatbox sentences. The way the bot works is that it detects certain already known words in player messages. If the bot finds a triggerWord, then it will move on to looking for a keyWord. Examples of triggerWords: 'where', 'when', 'is', 'has' Examples of keyWords: 'money', 'vehicle', 'team', 'ping' If the bot finds one or more of each type word, it will then see if the question is related to a player or not. A player does not have to be connected to the question. Questions like: ' What is the time? ' or ' what time is it? ' will still pass. Now that the bot knows if the question is player related or not it will loop through a function of possible- -answers to the question and return the answer to the player/server if one is found. It works pretty well already, but there is still a lot to fix before I'm going to share it. I am also thinking about making a database for the bot, so it can gather info about players and the server. Perhaps.. It will even be a real live boy some day.. I guess only time can tell. <- ( ) Aaaaanyways.. Here is a small preview of the bot at work Don't really know why I wrote the questions like I did in the video. Sentences like: 'how much money do you have wafamde', 'where are you wafamde?' or 'WhaTcaR iS wAFamdE usInG' - Almost anything will pass as long as the right keywords are there and the bot can connect them. Update: The bot supports the following types of questions: See some of the new functions at work here: Sorry about the Family Guy in the background Forgot to mute it. I have also added a BlackWord list to the resource. The point of the BlackWord list is to filter out unwanted returns from the bot. An example of this: ' Wafamde, how can I get some armor? ' -- Before this update this would have returned an answer from the bot, but doesn't return anything anymore, because it has detected some words that wouldnt be used in a "command". Update 2: Added function ' answerSimpleMessage ' - This function takes care of words like "afk", "back" and "brb"
  15. I'm ready for new years eve. (^) Are you?! Happy New Year To Everyone! See you all in 2012
  16. Yes im sure !!! Criminal = createTeam ("Criminal", 255, 0, 0) Keep in mind that he is helping you sckatchof. Watch your attitude..
  17. Damn. He was faster than me ^ You are going to have to explain yourself a little better. My plan was that I would talk you through this script so you also could learn something, but I really have no idea what you are trying to do here. Please give a more detailed description of your problem. The script is a complete mess. I wrote a few lines below. Try reading that and see if it makes sense. First of all, in your script you have two functions that are connected to the same event. ("onVehicleEnter") What I mean by this is that ' function car( thePlayer ) ' and ' function getdriver ( driver ) ' could/should be the same function. Next problem I see is that you check if the source(in this case the vehicle is the source) is == a marker. A vehicle and a marker would never be equal.. NEVER! Another problem is that you are trying to check the marker before it has even been created. if (source == marker) then marker = createMarker ( 2015, -2410, 12.5, "cylinder", 6, 255, 0, 0, 90 ) After that you destroy them again right away in the same function? destroyElement ( marker ) destroyElement ( blip ) When you do this they wont exist for more than a few milliseconds, not long enough for you to notice it.
  18. Yeah, I know what a square is -.- Try writing a better description of what you want next time. Try some of these links if you still wanna give it a go. http://www.makeuseof.com/tag/two-free-t ... own-fonts/ http://www.yourfonts.com/ http://www.myfonts.com/utilityzone/ There are lots of options for you.
  19. Thank you, so just to be sure, it will be destroyelement(blip1) and so on.. ? Thx You could store every blip you need destroyed in a table and do: blips = {} blips[1] = createBlip ( 60,-240,0, 26 ) blips[2] = createBlip ( 60,-240,0, 36 ) for i,blip in ipairs( blips ) do destroyElement( blip ) end ----------------------------------------------------------------- -- This can of course also be done with other elements ---------- ----------------------------------------------------------------- elements = {} elements[1] = createBlip ( 60,-240,0, 26 ) elements[2] = createVehicle ( 480, 0, 0, 3 ) for i,element in ipairs( elements ) do destroyElement( element ) end Or something similar.. Whatever fits your resource.
  20. Is this what you are looking for? http://www.fonts.com/findfonts/searchre ... mit=Search
  21. Or try the latest MTA 1.2 nightly. https://nightly.multitheftauto.com/ ( 24/12/2011 ) Windows: https://nightly.multitheftauto.com/mtasa-1.2-rc-3584-20111223.exe Linux: https://nightly.multitheftauto.com/multitheftauto ... 1CB.tar.gz
  22. There is, there's some sites which does that. It's all talk with you. Give some links to prove your point!
×
×
  • Create New...