Jump to content

NickScripter

Members
  • Posts

    43
  • Joined

  • Last visited

  • Days Won

    1

NickScripter last won the day on July 6 2020

NickScripter had the most liked content!

1 Follower

Details

  • Gang
    Nick Scripter
  • Location
    Brazil
  • Occupation
    Scripter
  • Interests
    Scripting

Recent Profile Visitors

928 profile views

NickScripter's Achievements

Rat

Rat (9/54)

12

Reputation

  1. Hi everyone! I want to offer for sale a Advanced Drug System that can be the perfect DLC for your Roleplay server. The Advanced Drug System is a system designed to bring realism to your city. This Mod allows you to be a drug dealer. The system works by ACL protection, ensuring the security and efficiency of the Mod, selecting the people who will have access to the system. The drug dealer can sell up to 5 different types of drugs: - Marihuana - Cocaine - Crack - Crystal - Ecstasy Each drug has a different psychedelic effect when used and the time it gets stoned is random, which can be a quick or long wave. Marijuana plantation system to be able to plant and process marijuana. Illegal drug store exclusively for those at ACL, with the option to buy Cocaine, Crack, Ecstasy and Crystal. Command /selldrugs to create a Marker and start selling drugs to nearby players. Key bind to open the Drug Inventory, configurable in Edit. Edit script to customize the main Mod settings. Useful commands: - /setdrugs id drugname quantity - Set drugs for a player. (Example: / setdrugs 1 marijuana 50) (Permission only for ACL Admin and Console) Name of the drugs: marijuana crack cocaine ecstasy crystal. - /drugs - Opens the drug inventory. - /selldrugs - Command for a trafficker use to open the drug store. - /plantmarijuana - Starts the planting of marijuana on the farm ------------- Screenshots of the Mod: Requirements ID System (Included on the resource package) This resource is compiled Buy it Payment with Paypal using PayHip and get the Download file Buy it fast and safe here: https://payhip.com/b/29uR Or send $30 to [email protected] with Paypal and i will send the Mod File to your E-mail. Other products: Advanced Medical System MTA Forum Contact Website Facebook Page E-MAIL: [email protected]
  2. Fixed it by setting root directory permission to 755.
  3. Hello everyone! I'm having trouble configuring the External Web Server using Nginx. I followed the MTA Wiki tutorial on how to install and configure Nginx properly. However, I am not able to resolve the 403 error. I put permissions on all files in the resource-cache at 755 and it didn't work either. Does anyone know what I can do to resolve this error? I'm using Debian 10 x64 Thanks ?
  4. Combo Introdução PREMIUM Nick Scripter Sabia que a primeira coisa que os players reparam no seu servidor é a introdução?? Por isso, decidi fazer um super sistema para o seu servidor ficar mais completo do que nunca! Vídeo Demonstativo Imagens Funções: - Painel de Login Personalizado - Whitelist (prova após o registro) Para evitar players Anti-RP no seu servidor. - Modo Anti-lag no cadastro. Ativando essa função, os players ganham mais FPS. - Criação de personagem MASCULINO e FEMININO para atender todos os jogadores(as) da sua cidade! - Emissão de RG para registrar seus dados antes de entrar na cidade - Introdução do servidor que mostra até 10 telas de locais que você pode escolher, junto com titulo e texto. - Edit para configurar o local de Spawn após a finalização da introdução. --------------------------------------------------------------------- Adquira já o Combo PREMIUM via INBOX da página Nick Scripter e deixe o seu servidor com a sua cara! Valor: R$100,00
  5. Olá pessoal!! Hoje venho trazer pra vocês um script que pode ser o script perfeito para você adicionar ao seu servidor de Roleplay! Está disponível a nova versão do Sistema de Drogas Avançado com diversas novidades!! ------------------------------------------------------------- Funções: - Todas as drogas possuem efeitos ao serem usadas. - A potência do efeito é aleatória, podendo bater uma brisa rápida e fraca ou uma muito forte e duradoura. - 5 tipos de Drogas: Maconha, Cocaina, Crack, Lança Perfume e Bala. - Sistema de Plantação, colheita e processamento de Maconha. - Sistema de Tráfico (/traficar) para vender drogas a outros players. - Inventário reformulado leve e dinâmico para guardar as drogas. - Sistema protegido por ACL (Somente pode plantar quem está na ACL) - Script Edit completo para personalizar as configurações do MOD a seu gosto. - Comando administrativo /setdroga id droga qnt para setar drogas a um player. - E MUITO MAIS!!! Vídeo Demonstrativo Imagens Adquira já via INBOX da página do Facebook Nick Scripter MTA ? Valor: R$60,00 Se gostou do Post, não se esqueça de reagir ao post pra me incentivar a trazer mais mods pra vocês!!
  6. ----/////////------ --Lado do Cliente ----/////////------ function ligarMotor() triggerServerEvent("motor",getLocalPlayer()) end --Seta o Motor Como Desligado ao Entrar + Bind para Ligar/desligar o motor addEventHandler("onClientVehicleEnter",getRootElement(),function() if(getPedOccupiedVehicleSeat(localPlayer) == 0 then outputChatBox("#FFFF00Para Ligar/Desligar o Motor Aperte [ i ]",r,g,b,true) triggerServerEvent("motor",getLocalPlayer()) bindKey("i","down",ligarMotor) else return end ----//////--- --Seta o Motor Como Desligado ao Sair ----//////--- end) addEventHandler("onClientVehicleStartExit",getRootElement(),function() if(getPedOccupiedVehicleSeat(localPlayer) == 0 then unbindKey("i","down",ligarMotor) triggerServerEvent("motor",getLocalPlayer()) triggerServerEvent("certezza",getLocalPlayer()) else return end end) Tente assim.
  7. Recomendo você tentar usar essa função que falei acima no client em OnClientVehicleEnter e OnClientVehicleStartExit, para chamar o triggerServerEvent apenas quando for o passageiro 1 para evitar de que outros passageiros chamem essa função. Lembrando que terá que trocar o source por localPlayer
  8. Nesse caso, no Server, você precisa adicionar uma função para verificar qual o assento do jogador. Recomendo você usar getPedOccupiedVehicleSeat para verificar se o passageiro é o motorista (no caso, 0) Ficaria então: ------------------------------------------------------------------------- ----/////////------ --Lado do Server ----/////////------ ---desliga e liga o motor baseado no input do cliente local function motorToggle() local theVehicle = getPedOccupiedVehicle(source) if getPedOccupiedVehicleSeat(source) == 0 then if (getVehicleEngineState(theVehicle) == true) then setVehicleEngineState(theVehicle,false) setVehicleLightState(theVehicle,0,1) setVehicleLightState(theVehicle,1,1) setVehicleLightState(theVehicle,2,1) setVehicleLightState(theVehicle,3,1) elseif (getVehicleEngineState(theVehicle) == false) then setVehicleEngineState(theVehicle,true) setVehicleLightState(theVehicle,0,0) setVehicleLightState(theVehicle,1,0) setVehicleLightState(theVehicle,2,0) setVehicleLightState(theVehicle,3,0) end end end addEvent("motor",true) addEventHandler("motor",getRootElement(),motorToggle)
  9. Thank you guys! Good tips Tut, next video i will use it =D
  10. Hello everyone! I made the GTA V trailer in MTA and I would like to share with you guys. Hope you enjoy it! If you enjoyed it, please react to the post ?
  11. The first 3 persons who use the code NSCR will have 10% discount on the buy!
×
×
  • Create New...