Jump to content

PSWGM9100

Members
  • Posts

    10
  • Joined

  • Last visited

About PSWGM9100

  • Birthday 11/03/2004

Details

  • Location
    Germany
  • Occupation
    Scripter
  • Interests
    Scripting, Gaming

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

PSWGM9100's Achievements

Member

Member (5/54)

0

Reputation

  1. Hey guys, here I sell my Map which i have mapped for my Server. it also contains it's own Island. It's mapped all around San Andreas (the most in San Fierro) - that's why I dont post Screenshots here because it would be too many. I've opened a Server where you can watch the Map. If you're interested write me an PM. Server-IP: 134.255.227.160:22133 Price: 25€ / 30$ ( Paypal payment )
  2. TaxiCars = { -- valid Vehicle ID's [420] = true, [438] = true } function enterTaxiVehicle(player,seat) local taxiVehicle = getPedOccupiedVehicle ( player ) local taxiVehicleID = getVehicleID(taxiVehicle) if TaxiCars[taxiVehicleID] == true then if taxiDriver == true and seat == 0 then cancelEvent(true,nil) return false end local taxiDriver = getVehicleOccupant ( player ) if taxiDriver == true then takePlayerMoney(player,500) givePlayerMoney(taxiDriver,500) else cancelEvent(true,nil) end end end addEventHandler("onVehicleStartEnter",getRootElement(),enterTaxiVehicle) I dont test it.
  3. I could script for you. Contact me via pn
  4. I could script for you. Contact me via pn
  5. Try this: https://wiki.multitheftauto.com/wiki/GuiSetAlpha
  6. Maybe use this? https://wiki.multitheftauto.com/wiki/GuiCreateEdit
  7. adprice = 5 function Advertise(player,cmd,...) local parametersTable = {...} local stringWithAllParameters = table.concat( parametersTable, " " ) local money = getPlayerMoney(player) local pname = getPlayerName(player) if money >= adprice then outputChatBox("Ad from "..pname..": "..stringWithAllParameters,root,0,255,0) outputChatBox("Phone number: 123-2212",root,0,255,0) takePlayerMoney(player,adprice) else outputChatBox("A advertise costs "..adprice.."$ !",player,255,0,0) end end addCommandHandler("ad",Advertise) I didn't test it, but i think its working. "/ad [text]"
×
×
  • Create New...