Jump to content
Mr. Green Gaming

Gonzalezo

Members
  • Posts

    483
  • Joined

  • Last visited

  • Days Won

    47

Reputation Activity

  1. Upvote
    Gonzalezo reacted to SDK in Report against Moshpit   
    The whole point of blocker mode is that it only is a punishment. If Sandy has found a way to exploit it and is looking to use it, he deserves a bigger punishment imo, like moshpit suggest a ban.
  2. Upvote
    Gonzalezo reacted to Bierbuikje in Custom NTS script   
    Hi there!
    On request of FantomicanYoshi I've made a custom NTS script (based on the famous NTS by BinSlayer). This script only chooses a random vehicle from the vehicles you choose. For example you can choose to only do an NTS map with RC vehicles, sport cars or bikes etcetera, everything is possible (even planes, boats and cars mixed for the same checkpoint).
    Download
    customClientNTS.lua
    customServerNTS.lua
    Install
    To install add both lua files in the same folder where the meta.xml is located. Also add the following lines to the meta.xml directly after the <meta> tag.
    <script src="customClientNTS.lua" type="client"></script> <script src="customServerNTS.lua" type="server"></script> Very important!
    The script has two modes. A default mode and a mode which is compatible with the mrgreen plugin (this script overrules the mrgreen plugin). The script is set to the default mode if you do nothing, but if you want to make it compatible with the mrgreen plugin you need to edit a variable in the customClientNTS.lua script. In the top of this script at line 16 you find the next variable:
    bb_mrgreenPlugin = 0 -- 0 = disabled, 1 = enabled To make the script compatible with the mrgreen plugin this variable needs to be changed to:
    bb_mrgreenPlugin = 1 -- 0 = disabled, 1 = enabled Edit it to your own preferences
    To edit it to your own preferences open the customClientNTS.lua file. In the script there are already 3 categories implemented: Air, Land and Sea. You'll recognize these categories through the script.
    First thing we need to do is go to the top of the script and add which cp belongs to which category. Right now we have 3 types of cp's, Air cp's, Land cp's and Sea cp's. Add the number of the checkpoint to the right category. For example in the next code the first 5 cp's are Air cp's, the second 5 are Land cp's and the last 5 are Sea cp's.
    bb_cpAir = {1, 2, 3, 4, 5} bb_cpLand = {6, 7, 8, 9, 10} bb_cpSea = {11, 12, 13, 14, 15} Next thing we do is define which vehicles we want to allow in the NTS script. This can be done by adding the model ID's to the rightful categories. In this example we only want helicopters in the air, only race vehicles on land and only a jetmax, speeder and squalo in the sea.
    bb_vehAir = {548, 425, 417, 487, 488, 497, 563, 447, 469} bb_vehLand = {411, 415, 429, 434, 451, 477, 480, 494, 502, 503, 506, 541, 555, 558, 559, 560, 561, 562, 565} bb_vehSea = {493, 452, 446} Right now you are done if you only want three different categories. Now I'll continue to explain how you create your own additional categories.
    Additional categories
    First we need to add a table which defines to which cp's the category applies. Edit the 'yourname' part to whatever name you like (keep it unique so it doesn't interfere with other variables).
    yourname_cp = {1, 4, 5, 7, 9} Now we add a table which contains all the vehicles of this category.
    yourname_veh = {602, 496, 401} Next we need to add a new elseif statement to check for the new category. This can be done around line 50 (the comment shows where exactly). This part triggers the checks to see if the cp taken is a cp from your category, whether the vehicle changed to (in the mix server) is an allowed vehicle and at last change it to a new random vehicle from your category.
    elseif yourname_isCP(bb_currentCP) then if yourname_check(bb_model) then else setElementModel(getPedOccupiedVehicle(localPlayer), yourname_ran()) end Then we add the check whether the cp taken is a cp from your category (around line 90).
    function yourname_isCP(bb_currentCP) for i, value in ipairs(yourname_cp) do if value == bb_currentCP then return true end end return false end Then we add the check whether the vehicle changed to (in the mix server) is allowed (around line 120).
    function yourname_check(bb_model) for i, value in ipairs(yourname_veh) do if value == bb_model then return true end end return false end Last we add the part where a new random model is generated for the player (around line 135).
    function yourname_ran() bb_model = yourname_veh[math.random(1, table.getn(yourname_veh))] return bb_model end Now we have created a new custom category for NTS. As many categories as you want can be added but remember to always choose unique names.
    Limitations for Mix server
    Because the mrgreen plugin and this script work seperately from each other, this script sometimes needs to correct things, caused by the mrgreen plugin, that we do not want. For example the mrgreen plugin may change the vehicle to a model which is not allowed. In that case this script changes it to a vehicle that is allowed, but that takes a short amount of time (to be exact 50 milliseconds). Although very short, you see two models appear very fast after each other when this happens.
    The reroll perk may change the vehicle to a model which is not allowed. I think it's solvable, but yet have to think about how.
    Limitations for both servers
    There is a statistical difference in which vehicle is most likely to be changed to. What this difference is exactly can be calculated, but I did not do that. I can give you the formula.  
    Statistical chance for allowed vehicles which are also part of the default NTS:
    ( Number of allowed vehicles in table which are also in the default NTS mode ) / ( Number of vehicles in the default NTS mode ) + ( 1 - ( Number of allowed vehicles in table which are also in the default NTS mode ) / ( Number of vehicles in the default NTS mode ) ) * ( ( Number of allowed vehicles in table which ARE in the default NTS mode ) / ( Number of allowed vehicles in table ) )
    Statistical chance for allowed vehicles which are not part of the default NTS:
    ( 1 - ( Number of allowed vehicles in table which are also in the default NTS mode ) / ( Number of vehicles in the default NTS mode ) ) * ( ( Number of allowed vehicles in table which ARE NOT in the default NTS mode ) / ( Number of allowed vehicles in table ) )
    Do not bother to calculate, maybe I'll implement it in the script sometime and output it in the debugscript or something.
     
    If there are any questions or you need troubleshooting you can ask them in this topic.
  3. Upvote
    Gonzalezo reacted to Cena in Screenshot + Video Thread   
    Hackz
  4. Upvote
    Gonzalezo reacted to jack123 in Ban   
    No unban for you
  5. Upvote
    Gonzalezo reacted to Flipper in Working on new stats   
    Looks rly nice aleks, Good job
  6. Upvote
    Gonzalezo reacted to MegasXLR in ive got a question   
  7. Upvote
    Gonzalezo reacted to BlueYoshi97 in GCs payment update   
    Ywa, how drunk were you when you made this topic?
  8. Upvote
    Gonzalezo got a reaction from DriveHardGetDirty in [AFE] Accelerate For Erect   
    They see me onion they hatin
  9. Upvote
    Gonzalezo got a reaction from DriveHardGetDirty in Pictures of thyself   
    Hahahahahahaha rly nigga? xD
  10. Upvote
    Gonzalezo got a reaction from MegasXLR in Pictures of thyself   
    Hahahahahahaha rly nigga? xD
  11. Upvote
    Gonzalezo got a reaction from NickYahoo in Pictures of thyself   
    Hahahahahahaha rly nigga? xD
  12. Upvote
    Gonzalezo reacted to mr.reese in Cnt|nexus mute/ban   
    Hi,
    I played today on the server with a different nick. He insulted me and he was racist. 


     
    btw i was good and won almost all of the rounds and he and Cnt|Kohl started to insulting me like camper, runner, noob etc. they insulted me more but didnt make screenshots. I didnt say anything to them except what u see on the scrennshot because they wanted to tell me they are the biggest pros  
    CNT style?  
  13. Upvote
    Gonzalezo got a reaction from MegasXLR in Pictures of thyself   
    Nick Onion xD
  14. Upvote
    Gonzalezo got a reaction from Quad_Tube in Pictures of thyself   
    XD It's MoshPit?
  15. Upvote
    Gonzalezo got a reaction from Gametaff in Pictures of thyself   
    XD It's MoshPit?
  16. Upvote
    Gonzalezo reacted to jack123 in Coming back in few days   
    neoxita miamor no muerto
  17. Upvote
    Gonzalezo reacted to DriveHardGetDirty in [AFE] Accelerate For Erect   
    AFE Racing Trailer
    Don't forget to subscribe!
     
  18. Upvote
    Gonzalezo got a reaction from Quad_Tube in Show your desktop background!   
  19. Upvote
    Gonzalezo reacted to CamaroSS in Show your desktop background!   
  20. Upvote
    Gonzalezo reacted to MegasXLR in I was banned by Stig lol   
    Wait what???????? Banned for wearing your own clan tag?
  21. Upvote
    Gonzalezo got a reaction from Quad_Tube in Unban Appeal STR8KASH   
    1. Your ingame name: STR8KASH
    2. Date of your ban: 28/06/2016 
    3. What game/server are you banned from: Race and MiX
    4. Who banned you (only if you know who): On MiX F1MADKILLER
    5. Reason why you got banned (only if you know why): I camp on destiny no block.
    Hello everyone 2 month's completely filled me rethink my teeth i like very much the behavior of the server. I play on RACE server 6 year's and i've got a lot of friend's. I skirted the ban only one time.Please only last chance. Greetings STR8KASH
     
  22. Upvote
    Gonzalezo reacted to Cena in Unban Appeal STR8KASH   
    Just UNBAN him! 2+ months ban. Admins are so nice who banned you xD
  23. Upvote
    Gonzalezo reacted to Ryuu in Unban Appeal STR8KASH   
    dajcie cebulke unban
  24. Upvote
    Gonzalezo got a reaction from Ryuu in Unban Appeal STR8KASH   
    1. Your ingame name: STR8KASH
    2. Date of your ban: 28/06/2016 
    3. What game/server are you banned from: Race and MiX
    4. Who banned you (only if you know who): On MiX F1MADKILLER
    5. Reason why you got banned (only if you know why): I camp on destiny no block.
    Hello everyone 2 month's completely filled me rethink my teeth i like very much the behavior of the server. I play on RACE server 6 year's and i've got a lot of friend's. I skirted the ban only one time.Please only last chance. Greetings STR8KASH
     
  25. Upvote
    Gonzalezo reacted to DriveHardGetDirty in @Cena   
×
×
  • Create New...