Jump to content

KillFrenzy

Members
  • Posts

    130
  • Joined

  • Last visited

Posts posted by KillFrenzy

  1. Yep thats right, except I didn't have the driveby resource running. Just spray all your ammo out of the slot 4 gun (TEC9, MAC10, or MP5) and you can no longer driveby with your other guns.

  2. Odd, cause I find the weapon sync is real good, just aiming directly at them will hit them (with a little delay in health loss). Although I think I saw in that changelog that the no anims desync has been fixed.

  3. I've found a bug with driveby's.

    You cannot driveby at all if you have no TEC9, MAC10, or MP5 (slot 4 weapons). You cannot driveby with any other weapon (like pistols) if you do not hold a slot 4 weapon. I'm sure of this and I've tested it.

    Oh, one other thing.. all skins make CJ sounds, so girl skins will make manly sounds :(

    Bug's

    Yeah, I was using a skin other than CJ when that happened. Stats were left alone. I tried setting it back to CJ but that didn't help. Nice to see someone other than me have it :P

  4. Hey I've got it working now. Although this can be a dodgy workaround and it is not designed to work with nuke. Btw, I've changed the ion button to "i" rather than "f" to avoid conflcit with entering a car. If you know how to work a server properly you'd know how to implement ion cannon resource :P

    EDIT: I've got problems attaching the file :/

  5. Weapon stats are locked at the moment, so weapon skills won't work. The next release will have weapon stats defaulted to high.

    I'm only beggining lua for MTA but I think I know whats wrong.

    Forward the source to the player. The problem is in the event handler. Try this:

    addEventHandler ( "onPlayerJoin", getRootElement(), setFullStats( source ) ) 
    

    The source gets the element that triggered the event. In this case, the source is the player triggering the event.

  6. I think that picture should be removed btw, linking to a hack site. Well.. btw, dual screen works perfectly with MTA:DM :D

    I'm sure something will be done in a future release about anti-cheat, because this is a dev preview.

  7. I was almost going to make my own topic on bugs and suggestions until I saw this :wink:

    Well.. what I was about to post is copy pasted here.

    OK, here are some bugs and suggestions I've collected over the past couple of days that could be useful to the team, related to gamemodes and the client/server itself.

    • Suggestion - Movement Smoothing: Reduce the movement smoothing. It makes cars turn weirdly and player's slide a lot. Try and turn it down a bit please, cause it actually can make the sync worse.
    • Suggestion - Anti-cheat: This is a dev preview so I'll forgive you easily on this, but I'm already seeing hackers.
    • Suggestion - Hay: Make something happen once someone reaches the top. Like a time limit for the rest to reach the top, labeling the first guy up as the winner.
    • Bug - Race Mode: I've only seen this happen on one map though. If you re-spawn on a checkpoint where you switch cars, you get your old car rather than the new car (rather than car that you switched to)
    • Bug - Race Mode: Spectating doesn't work properly whenever I finished a race.
    • Bug - Race Mode: When I jump into water and drown, my car floats up like theres no gravity.
    • Bug (I think) - Crash Reporting: I can't login under the name I've registered with. Login at mtabeta.com works perfectly. So I can't report crashes. Unless it requires separate registration which is discouraging really.

    The weapon skills would of been a suggestion but I guess I saw it in the live changes. I'll post more if I can see any. Although I'd rather dual weild weapons not maxed out, but I can script it :D

    Hope this all helps.

  8. It's a pretty simple script. It's supposed to set the weapon skills to maximum every time a player spawns. It works when I join. The problem is, as soon as a second player joins the server and maybe spawn, the skills are reset to minimum for all players. I don't know why. I'm doing this because we are all so used to the better stats.

    -- set weapon skills upon spawn 
    function player_Spawn( posX, posY, posZ, spawnRotation, theTeam, theSkin, theInterior, theDimension ) 
        setWeaponStatsMax ( source ) 
    end 
      
    addEventHandler ( "onPlayerSpawn", getRootElement(), player_Spawn ) 
      
      
    -- set weapon stats to maximum except for dual weild weapons 
    function setWeaponStatsMax ( thePlayer ) 
        setPlayerStat ( thePlayer, 69, 999 ) --pistol 
        setPlayerStat ( thePlayer, 70, 999 ) --silenced pistol 
        setPlayerStat ( thePlayer, 71, 999 ) --desert eagle 
        setPlayerStat ( thePlayer, 72, 999 ) --pump shotgun 
        setPlayerStat ( thePlayer, 73, 999 ) --sawn off shotgun 
        setPlayerStat ( thePlayer, 74, 999 ) --spaz12 
        setPlayerStat ( thePlayer, 75, 999 ) --micro uzi / mac10 
        setPlayerStat ( thePlayer, 76, 999 ) --smg / mp5 
        setPlayerStat ( thePlayer, 77, 999 ) --ak47 
        setPlayerStat ( thePlayer, 78, 999 ) --m4s 
    end 
    

    Also there is some graphical glitch with dual wielding guns.

  9. Can someone please tell me what an "Anticheat" is, and exactly where is it located in the MTA folder? :?

    Anti-Cheat is something built into MTA:Race to help prevent cheaters who use cheating programs. It uses low level detection stuff (probably), which Windows Vista may not allow, since it's security may consider the program hacking. Well, thats my theory of the most likely cause.

    Unfortunately, the anti-cheat is outdated and won't detect the cheaters anymore. Because it is built into MTA:Race, I'm guessing that it is built into the client.dll file for Race, and not the Map Editor, meaning you cannot just get rid of the anti-cheat to play in Vista. Nothing to worry, because Race can be scripted in MTA:DM, which works on Vista.

  10. Ahem.. sorry for the double post, I can't edit my one above. The formula is wrong. It's meant to be KB not Kbits.

    For KiloBytes:

    (Upload Speed in KB) = 1.5 * (Amount of Players)^2

    (Amount of Players) = SquareRoot((Upload Speed in KB) / 1.5)

    For KiloBits:

    (Upload Speed in KBits) = 15 * (Amount of Players)^2

    (Amount of Players) = SquareRoot((Upload Speed in KBits) / 15)

×
×
  • Create New...