Jump to content

CastiaL

Members
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    2

CastiaL last won the day on August 12 2021

CastiaL had the most liked content!

2 Followers

About CastiaL

  • Birthday May 11

Details

  • Location
    Turkey
  • Interests
    Script

Recent Profile Visitors

5,440 profile views

CastiaL's Achievements

Sucka

Sucka (13/54)

18

Reputation

1

Community Answers

  1. Looking for a fast, reliable game server for MTA? Check out Rabisu.com! Rabisu.com provides high-performance game and virtual servers with instant setup and unlimited traffic. Whether you want a VPS or dedicated game server, we’ve got you covered. Why choose Rabisu for your MTA server? Low ping game servers thanks to 10 Gbps infrastructure.Top-tier hardware: AMD Ryzen / Intel Xeon CPUs, DDR4 3600 MHz RAM, Samsung M2 NVME disks.Automatic setup: Your server is ready immediately after payment.DDoS protection: Layer 7 Reserve Proxy, TCP/UDP filtering, custom firewall rules.24/7 monitoring to keep your server running smoothly. Game Server Packages (Selected VPS for Game Hosting) Packet 1: 2x Intel Xeon E5, 4GB RAM, 40GB M.2 SSD, $2.90/month – BG/TRPacket 2: 4x Intel Xeon E5, 8GB RAM, 60GB SSD, $5.49/month – BG/TRPacket 3: 6x Intel Xeon E5, 16GB RAM, 120GB SSD, $9.49/month – BG/TRPacket 4: 2x AMD Ryzen 7/9, 4GB RAM, 40GB M.2 SSD, $7.10/month – NY/LA/UK/DE/TR/CA/AUPacket 5: 4x AMD Ryzen 7/9, 8GB RAM, 60GB SSD, $10.30/month – NY/LA/UK/DE/TR/CA/AUPacket 6: 6x AMD Ryzen 7/9, 16GB RAM, 120GB M.2 SSD, $17.80/month – NY/LA/UK/DE/TR/CA/AU Order Now: Rabisu VPS & Game Servers Locations Europe: Turkey (Bursa), Bulgaria (Haskovo), UK (London), Germany (Falkenstein)USA: Los Angeles, New York, Miami, DallasOther: Australia (Sydney), Canada (Beauharnois) Rabisu.com offers full performance, instant setup, and reliable support – perfect for hosting your MTA server without lag or downtime. Contact & More Info: [email protected] | Looking Glass
  2. addEventHandler("onClientPlayerDamage", localPlayer, function() if wasEventCancelled() then --triggerServerEvent("cancelDetected", localPlayer) end end, false, -999) -- low priority
  3. cursorX, cursorY = getCursorPosition() -- showCursor(false) <-- Use Before Then ... -- showCursor(true) <-- Use After Then screenX, screenY = guiGetScreenSize() setCursorPosition(cursorX*screenX, cursorY*screenY)
  4. Can you write the codes?
  5. function stopUnknownDamage(attacker, damagetype, bodypart) if (damagetype == 55) then --if the no known information about this damage type cancelEvent() --cancel the event end end addEventHandler("onClientPlayerDamage", localPlayer, stopUnknownDamage)
  6. function notifyAboutExplosion(withExplosion, player) -- player: The player who sent the explosion packet. outputChatBox(getVehicleName(source) .. " just blew up") end addEventHandler("onVehicleExplode", root, notifyAboutExplosion)
  7. SetLowLODElement, you can check this function
  8. CastiaL

    Help noob

    I think you are looking for these EngineLoadDFF, EngineLoadTXD, EngineLoadCOL
  9. Fatal error: Uncaught MultiTheftAuto\Sdk\Exception\AccessDeniedException: Access Denied. This server requires authentication. Please ensure that a valid username and password combination is provided. in C:\xampp12\htdocs\vendor\multitheftauto\mtasa-php-sdk\src\Response\HttpStatusValidator.php:48 Stack trace: #0 C:\xampp12\htdocs\vendor\multitheftauto\mtasa-php-sdk\src\Service\MtaService.php(92): MultiTheftAuto\Sdk\Response\HttpStatusValidator->validate() #1 C:\xampp12\htdocs\vendor\multitheftauto\mtasa-php-sdk\src\Model\Resource.php(71): MultiTheftAuto\Sdk\Service\MtaService->callFunction('php', 'getAccount', Array) #2 C:\xampp12\htdocs\index.php(14): MultiTheftAuto\Sdk\Model\Resource->call('getAccount', '******', '*****') #3 {main} thrown in C:\xampp12\htdocs\vendor\multitheftauto\mtasa-php-sdk\src\Response\HttpStatusValidator.php on line 48 im giving this error
  10. Players troll other players by running server-side events, how can I prevent this? For example, they can animate all players using the freeroam script.
  11. Did you assign a value to the "sserial" variable?
  12. CastiaL

    antiban

    open this file: /admin/server/admin_server.lua and search elseif ( action == "ban" ) then search for this line and replace with the following elseif ( action == "ban" ) then if ( hasObjectPermissionTo ( player, "general.adminpanel", true ) ) then return outputChatBox("You can't ban this player", source, 255, 100, 70) end If Banned Player has admin panel Access, it cancels ban. elseif ( action == "kick" ) then if ( hasObjectPermissionTo ( player, "general.adminpanel", true ) ) then return outputChatBox("You can't kick this player", source, 255, 100, 70) end
×
×
  • Create New...