Jump to content

.:HyPeX:.

Members
  • Posts

    1,255
  • Joined

  • Last visited

Everything posted by .:HyPeX:.

  1. Nevermind, i've just figured out my problem.
  2. Ok, i have read some things arround and i added this on the racevoting_server, but it doesnt does nothing at all. function OnNextmapRequest ( mapName, theplayer, Buymap) triggerEvent("onNextMapRequest",thePlayer,mapName) --If event == "OnNextMapRequest" is called then g_ForcedNextMap = mapName end
  3. Hello, i've done a script based on nextreme's pannel functions and i know i need to trigger them on the racevoting, but when triggering the events to the race to set a map with the script (the script is supposed to make the nextmap cooler) i never did it and i cant find in the wiki how to do it.. Any idea? Thanks in advance
  4. Now: i cannot talk in either Us or none group, and i cant add me to Do... seems pretty hard Btw when started, it changed to this(at least started now):
  5. i get a weird bug. " Unexpected symbol at line:1 near '-' "
  6. Founded it got a extra end at the veeery end. (last one) But now, im almost like at the start of the topic. if i didnt joined any group, i get the [Donator] on the message. If im in Us Group, i cant Speak or my message isnt shown. Still, now the donator group works. (i can add perfectly a player and works fine.)
  7. I have checked the script im running atm on my local server and that end is there, but as i said on the edit, it works perfectly, but it doesnt adds a player to Us or Do, and it doesnt adds me to the team on login/join. (if i add it manually) EDIT: runned the script you posted and it didnt did nothing at all.
  8. I used MTA Script Editor & Notepad++ but still i cant find it. im pretty sure it is a really lol error but i cant find it. here i removed some not needed lines and organized it a bit more.. Btw, MTA script editor didnt found any errors so its pretty rare. (probably becouse im using a version that is about from 1.1) --[[***************************************** * * * -|Us|- Teamscript * *-------------------------------------------* * teamscript.lua -- server * * Original by Sniper ** Edited by HyPeX * *********************************************]] local resourceRoot = getResourceRootElement(getThisResource()) --[[************************************************* * Part I: tests, resourcestart * *****************************************************]] local testload local testteam local testacl local usteam local doteam --output load message addEventHandler("onResourceStart", resourceRoot, function () outputChatBox("SCRIPT: -|Us|- & Donator teamscript by HyPeX successfully loaded!") testload = true end) --create Teams addEventHandler("onResourceStart", resourceRoot, function () usteam = createTeam("-|Us|- Members", 2, 134, 183) if (getTeamFromName("-|Us|- Members")) then testteam = true outputChatBox("SCRIPT: -|Us|- Team successfully created!") else outputChatBox("SCRIPT ERROR: -|Us|- Team could not be created!") testteam = false end end) --create Teams addEventHandler("onResourceStart", resourceRoot, function () doteam = createTeam("Donators", 100, 255, 100) if (getTeamFromName("Donators")) then testteam = true outputChatBox("SCRIPT: Donator Team successfully created!") else outputChatBox("SCRIPT ERROR: Donator Team could not be created!") testteam = false end end) --build the "Us" group in ACL addEventHandler("onResourceStart", resourceRoot, function () if (aclGetGroup("Us") == nil) or (aclGetGroup("Us") == false) then outputChatBox("SCRIPT: Creating Us group in ACL...") aclCreateGroup("Us") else outputChatBox("SCRIPT: Group -|Us|- is already added in ACL") end end) --build the "Do" group in ACL addEventHandler("onResourceStart", resourceRoot, function () if (aclGetGroup("Do") == nil) or (aclGetGroup("Do") == false) then outputChatBox("SCRIPT: Creating Do group in ACL...") aclCreateGroup("Do") else outputChatBox("SCRIPT: Group Donators is already added in ACL") end end) --check if THIS resource is added in ACL else output warning addEventHandler("onResourceStart", resourceRoot, function () if not (isObjectInACLGroup("resource." ..getResourceName(getThisResource()), aclGetGroup("Admin"))) then outputChatBox("SCRIPT ERROR: Please add this resource (teamscript) as 'resource.' into the ACL Group 'Admin' else this script won't work!") outputDebugString("SCRIPT ERROR: Please add this resource (teamscript) as 'resource.' into the ACL Group 'Admin' else this script won't work!", 1, 255, 0, 0) testacl = false else testacl = true end end) --[[************************************************* * Part II: manage players * *****************************************************]] --command for adding a player to Us Group function addPlayerToUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("Us"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the Us ACL group", playerSource, 0, 255, 0, true) if (getAccount(accountName)) then setPlayerTeam(getAccountPlayer(getAccount(accountName)), usteam) end --else --outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) --end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /addus [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("addus", addPlayerToUs) --command for adding a player to Do Group function addPlayerToDo (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then --if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("Do"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the Do ACL group", playerSource, 0, 255, 0, true) if (getAccount(accountName)) then setPlayerTeam(getAccountPlayer(getAccount(accountName)), doteam) end --else --outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) --end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /adddo [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("adddo", addPlayerToDo) --command for removing a player from the Us Group function removePlayerFromUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then --if (getAccount(accountName)) then if (isObjectInACLGroup("user." ..accountName, aclGetGroup("Us"))) then aclGroupRemoveObject (aclGetGroup("Us"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully removed from the Us ACL group", playerSource, 0, 255, 0, true) else outputChatBox("Account could not be found in ACL to delete!", playerSource, 255, 0, 0, true) end --else --outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) --end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /addus [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("removeus", removePlayerFromUs) --command for adding moderators function addPlayerToUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("Moderator"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the Moderator group", playerSource, 0, 255, 0, true) else outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /addmod [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("addmod", addPlayerToUs) --command for adding supermoderators function addPlayerToUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("SuperModerator"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the SuperModerator group", playerSource, 0, 255, 0, true) else outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /addsmod [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("addsmod", addPlayerToUs) --[[************************************************* * Part II: manage events if player joins etc.* *****************************************************]] --add player to Us team if is in ACL on Login function addUsPlayerToTeam(oldacc, account, auto) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Us"))) and (string.find(getPlayerName(source), "-|Us|-"))then setPlayerTeam(source, usteam) outputChatBox("Welcome back " .. getPlayerName(source) .. "#e76a0c to -|Us|-!",source, 231, 106, 12, true) playSoundFrontEnd(source, 1) end end addEventHandler("onPlayerLogin", getRootElement(), addUsPlayerToTeam) --add player to donator team if is in ACL on Login function addUsPlayerToTeam(oldacc, account, auto) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Do"))) then setPlayerTeam(source, doteam) outputChatBox("Welcome back " .. getPlayerName(source) .. "#e76a0c to Donators!",source, 231, 106, 12, true) playSoundFrontEnd(source, 1) end end addEventHandler("onPlayerLogin", getRootElement(), addUsPlayerToTeam) --check Us player after someone changed his nick function checkIfPlayerIsUsAfterNickchange(oldnick, nick) if (string.find(nick, "-|Us|-")) and not (getPlayerTeam(source) == usteam) then if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Us"))) then setPlayerTeam(source,usteam) outputChatBox("Welcome back " .. nick .. "#e76a0c to -|Us|-!",source, 231, 106, 12, true) playSoundFrontEnd(source, 1) else setTimer(checkLoginOrKick, 150000, 1, source) outputChatBox("Please login within 15 secs or you'll be kicked!", source, 255, 0, 0, true) end end end addEventHandler("onPlayerChangeNick", getRootElement(), checkIfPlayerIsUsAfterNickchange) function checkUsPlayerOnJoin() if (string.find(getPlayerName(source),"-|Us|-")) then setTimer(checkLoginOrKick, 60000, 1, source) outputChatBox("Please login within 60 secs or you'll be kicked!", source, 255, 0, 0, true) --setTimer(outputChatBox, 10000, 1, "Please login now! You have 10 secs left or you'll get kicked!", source, 255, 0, 0, true) --changenick(source) end end addEventHandler("onPlayerJoin", getRootElement(), checkUsPlayerOnJoin) function checkLoginOrKick(player) if not (
  9. Hey i've been editing Sniper's teamscript and tried to add a donator team. I sincerily couldnt make it work. it keeps appearing at the end of a normal player [Donator]. If i add a player to Us or Donator, it works and goes fine. the problem is that for example when i remove the Us and logout and login it adds at the end the [M]. Any help of how to fix it? It also doesnt adds any colour to text as supposed. Also: It works if the -|Us|- Only is alone. (i did the script edit like that first and worked) but then i wanted to do a copy and use them both. (wut an idiot) and i founded they overworked and i got messages twice. so i edited them in 1 and got this: --[[***************************************** * * * -|Us|- Teamscript * *-------------------------------------------* * teamscript.lua -- server * * Original by Sniper * * Edited by HyPeX * *********************************************]] local resourceRoot = getResourceRootElement(getThisResource()) --[[************************************************* * Part I: tests, resourcestart * *****************************************************]] local testload local testteam local testacl local usteam local doteam --output load message addEventHandler("onResourceStart", resourceRoot, function () outputChatBox("SCRIPT: -|Us|- & Donator teamscript by HyPeX successfully loaded!") testload = true end) --create Teams addEventHandler("onResourceStart", resourceRoot, function () usteam = createTeam("-|Us|- Members", 2, 134, 183) if (getTeamFromName("-|Us|- Members")) then testteam = true outputChatBox("SCRIPT: -|Us|- Team successfully created!") else outputChatBox("SCRIPT ERROR: -|Us|- Team could not be created!") testteam = false end end) --create Teams addEventHandler("onResourceStart", resourceRoot, function () doteam = createTeam("Donators", 100, 255, 100) if (getTeamFromName("Donators")) then testteam = true outputChatBox("SCRIPT: Donator Team successfully created!") else outputChatBox("SCRIPT ERROR: Donator Team could not be created!") testteam = false end end) --build the "Us" group in ACL addEventHandler("onResourceStart", resourceRoot, function () if (aclGetGroup("Us") == nil) or (aclGetGroup("Us") == false) then outputChatBox("SCRIPT: Creating Us group in ACL...") aclCreateGroup("Us") else outputChatBox("SCRIPT: Group -|Us|- is already added in ACL") end end) --build the "Do" group in ACL addEventHandler("onResourceStart", resourceRoot, function () if (aclGetGroup("Do") == nil) or (aclGetGroup("Do") == false) then outputChatBox("SCRIPT: Creating Do group in ACL...") aclCreateGroup("Do") else outputChatBox("SCRIPT: Group Donators is already added in ACL") end end) --check if THIS resource is added in ACL else output warning addEventHandler("onResourceStart", resourceRoot, function () if not (isObjectInACLGroup("resource." ..getResourceName(getThisResource()), aclGetGroup("Admin"))) then outputChatBox("SCRIPT ERROR: Please add this resource (teamscript) as 'resource.' into the ACL Group 'Admin' else this script won't work!") outputDebugString("SCRIPT ERROR: Please add this resource (teamscript) as 'resource.' into the ACL Group 'Admin' else this script won't work!", 1, 255, 0, 0) testacl = false else testacl = true end end) --[[************************************************* * Part II: manage players * *****************************************************]] --command for adding a player to Us Group function addPlayerToUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then --if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("Us"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the Us ACL group", playerSource, 0, 255, 0, true) if (getAccount(accountName)) then setPlayerTeam(getAccountPlayer(getAccount(accountName)), usteam) end --else --outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) --end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /addus [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("addus", addPlayerToUs) --command for adding a player to Do Group function addPlayerToDo (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then --if (getAccount(accountName)) then aclGroupAddObject (aclGetGroup("Do"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully added to the Do ACL group", playerSource, 0, 255, 0, true) if (getAccount(accountName)) then setPlayerTeam(getAccountPlayer(getAccount(accountName)), doteam) end --else --outputChatBox("Account could not be found! Please enter the correct accountname!", playerSource, 255, 0, 0, true) --end else outputChatBox ("No account name specified.", playerSource, 255, 0, 0, true) outputChatBox ("Syntax: /adddo [accountName]", playerSource, 255, 0, 0, true) end else outputChatBox ("Sorry but only admins can use this!", playerSource, 255, 0, 0, true) end end addCommandHandler("adddo", addPlayerToDo) --command for removing a player from the Us Group function removePlayerFromUs (playerSource, commandName, accountName) if (isObjectInACLGroup ( "user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Admin"))) then if (accountName) then --if (getAccount(accountName)) then if (isObjectInACLGroup("user." ..accountName, aclGetGroup("Us"))) then aclGroupRemoveObject (aclGetGroup("Us"), "user."..accountName) outputChatBox("Account '"..accountName.."#00ff00' succesfully removed from the Us ACL group", playerSource, 0, 255, 0, true) else
  10. i meant if i can get all handlings at 50 fps, the script needed info.
  11. thanks. I will check it. EDIT: There is a place i can get ALL defaults at 50 Fps?... thanks in advance.
  12. Its possible to load a handling archive for a map in race gamemode?.. i was just looking for new ideas.. i just need if its possible to load it, and at the end of script i would add a line for unloading it.. And if its possible, can someone lend me a hand on how to load it? And i see that there is a handling editor, but if i want a hanlding archive i need to do one by hand right?=
  13. .:HyPeX:.

    MTA Freeze

    it kinda fixed by removing d3d9.dll, but it still gets random freezes many times. i will post a log later.
  14. .:HyPeX:.

    MTA Freeze

    It Always freezes about getting any type of bike, bikes like bmx, or motorbikes like nrg-500 or freeway.. only works with cars.. (my gta_sa freezes at loading them)... i thought it was only me but it happens to many friends as well, this bug only happens on 1.3, tested and doesnt happens at 1.2. Regards. HyPeX EDIT: Regards not Regards ^^
  15. According to windows my S.M.A.R.T Status is 'Bad' so nevermind
  16. Dont mind about this anymore, today my smart failed, i will soon replace the harddisk.
  17. http://k38.kn3.net/E33186517.png http://k37.kn3.net/52A48B37D.png
  18. Not many times, i only got this about 5 times in the whole time i played mta.. (a lot) but it only managed to happen on 1.3 Actually it happens at map loading, not exactly at loading, just after finishing loading. it starts to lag up and it closes. This ONLY manages to happen about 1 time in 150 or 200. notice that after i posted this i did not had another crash until now, but yet freezes, to see how followed it happens. Can be related to that i have Windows Delayed Writing Fails?.. im already woring out to see but i think its my hard disk, since when i defragment my hard disk sometimes makes an error during it and i found out that the delayed writing problem is usually related to hard disk errors. also after defragmenting a little it stopped having 'freezes' at some parts, but still does at others.
  19. Only an infernus mod and an effects disable, but still it happened before.
  20. ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Tue Feb 07 12:00:40 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=32D08044 ECX=32E28A00 EDX=00867000 ESI=32D11D64 EDI=00000000 EBP=32E28A2C ESP=0022F21C EIP=005A5735 FLG=00210246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Tue Feb 07 15:05:56 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=1F2F5438 ESI=1EAEFB20 EDI=043E5060 EBP=002A48F0 ESP=0022FB60 EIP=007F190F FLG=00010202 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Feb 08 14:09:09 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=2361BEF0 ESI=236D93B8 EDI=043E5060 EBP=002A48F0 ESP=0022FB60 EIP=007F190F FLG=00010206 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Feb 08 15:59:20 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=1ED7EFE4 ECX=1ED7D600 EDX=00867000 ESI=1EDE2C38 EDI=00000000 EBP=1ED7D604 ESP=0022F21C EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Feb 08 23:15:35 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=28999B78 ESI=29EF8230 EDI=043E5060 EBP=002A48F0 ESP=0022FB60 EIP=007F190F FLG=00210206 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Thu Feb 09 22:38:18 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x0023780A EAX=000D6201 EBX=16D75AA0 ECX=00000000 EDX=000D60DE ESI=16D75AA0 EDI=0E564F48 EBP=16E6C4EC ESP=0022FCE8 EIP=0063780A FLG=00010297 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Feb 15 23:56:34 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=2935471C ECX=29354600 EDX=00867000 ESI=28999FE4 EDI=00000000 EBP=293546C0 ESP=0022F1D4 EIP=005A5735 FLG=00210246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Sat Feb 25 15:20:13 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=39995670 ECX=39995600 EDX=00867000 ESI=21CE267C EDI=00000000 EBP=39995614 ESP=0022F1D4 EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Mon Feb 27 13:04:41 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=2234A360 ESI=286947C0 EDI=043E5060 EBP=002A48C0 ESP=0022FB60 EIP=007F190F FLG=00010206 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Mon Feb 27 13:39:52 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=28A6BDB0 ECX=28A6AC00 EDX=00867000 ESI=1DC57488 EDI=00000000 EBP=28A6AC14 ESP=0022F414 EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Thu Mar 01 19:48:53 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=4736E690 ESI=59046C90 EDI=043E5060 EBP=002A48F0 ESP=0022FB60 EIP=007F190F FLG=00010206 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Fri Mar 02 15:54:08 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=16A41740 ESI=18420878 EDI=043E5060 EBP=002A48F0 ESP=0022FB60 EIP=007F190F FLG=00010202 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Sun Mar 04 19:58:58 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=361164E0 ECX=36115E00 EDX=00867000 ESI=351EFB48 EDI=00000000 EBP=36115EC4 ESP=0022F1D4 EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Sun Mar 04 22:25:14 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=51B01968 ECX=51B01900 EDX=00867000 ESI=2B3AF82C EDI=00000000 EBP=51B0190C ESP=0022F93C EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Mar 07 20:04:50 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x003F190F EAX=00020000 EBX=00000000 ECX=00000178 EDX=17AF28F8 ESI=20433288 EDI=043E5060 EBP=002A48C0 ESP=0022FB60 EIP=007F190F FLG=00010202 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Wed Mar 07 20:05:44 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x00171BA0 EAX=C2DEEE9C EBX=00000000 ECX=0E593200 EDX=00B9BA78 ESI=00C88B40 EDI=00C88B58 EBP=0E593200 ESP=0022FA30 EIP=00571BA0 FLG=00010286 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3898.0.000 Time = Wed Mar 07 20:10:54 2012 Module = C:\juegos tomas\GTA MTA\gta_sa.exe Code = 0xC0000005 Offset = 0x001A5735 EAX=00000000 EBX=1EC7CF44 ECX=1F2E5A00 EDX=00867000 ESI=1F377DAC EDI=00000000 EBP=1F2E5AD4 ESP=0022F19C EIP=005A5735 FLG=00010246 CS=0023 DS=002B SS=002B ES=002B FS=0053 GS=002B
  21. Still, stops responding. PD: At mta 1.2 it works perfectly, cant be a mta 1.3 problem?
  22. Still without the d3d9 stops responding at same part.
  23. it happened also before i added it, i added the ENB (d3d9) after installing drivers. Anyway i will test.
×
×
  • Create New...