Jump to content

[DMC]

Members
  • Posts

    165
  • Joined

  • Last visited

Details

  • Gang
    DMC

Recent Profile Visitors

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

[DMC]'s Achievements

Busta

Busta (15/54)

0

Reputation

  1. [DMC]

    Error

    ')' expected (to close'(' at line 945) near 'end' Can someone tell me what to do i tried adding a end and that didnt work so i deleted 1 and that also didnt work Help please
  2. [DMC]

    login message

    Thats the problem, Its not logging in but its still saying the message
  3. [DMC]

    login message

    srry this is not needed at all, i will explain my situation My friend solidsnake/castillo made a script for me that alows A player to login to his nick only not any other names But when someone does a login to an other name its still saying outPutChatbox
  4. [DMC]

    In car camera

    Check community and search for cockpit
  5. [DMC]

    Radar

    Hey, My question is can i put the radar for example at the top of the screen (moving the radar)
  6. [DMC]

    login message

    LOOK AT 3rd Post function addPlayer() local playeraccount = getPlayerAccount(source) if not isGuestAccount(playeraccount) then local accountname = getAccountName(playeraccount) CheckPlayer = executeSQLSelect ( "PlayersData", "accountname", "accountname = '" .. accountname .. "'" ) if ( type( CheckPlayer ) == "table" and #CheckPlayer == 0 ) or not CheckPlayer then executeSQLInsert ( "PlayersData", "'".. accountname .."','0','0','0','0','FF0000','00FF00','None','None/None','I love DMC','0','0'" ) end end local playeraccount = getPlayerAccount(source) if not isGuestAccount(playeraccount) then local accountname = getAccountName(playeraccount) local data = executeSQLQuery("SELECT * FROM PlayersData where accountname = '" .. accountname .. "'") outputChatBox(getPlayerName(source).. " login and says: ".. data[1]["LoginMsg"] .."!",root,0,255,0,true) setElementData(source,"ageNsex",data[1]["AgeNSex"]) setElementData(source,"contact",data[1]["Contact"]) setElementData(source,"message",data[1]["LoginMsg"]) setElementData(source,"skin",data[1]["Skin"]) setElementData(source,"NC",data[1]["NameC"]) setElementData(source,"CC",data[1]["ChatC"]) setElementData(source,"CarColor",data[1]["CarColor"]) end end addEventHandler("onPlayerLogin",getRootElement(), addPlayer)
  7. ty because of a scumbagg you can downlaod them in community
  8. [DMC]

    TXD

    well, i dont really know where this post belongs so ive made a txd and replaced a billboard and the image has transparant background but on the billboard its black how can i make it same as image
  9. [DMC]

    Two problems!

    hmm can u post the errors its giving /debugscript 3
  10. [DMC]

    Two problems!

    1: i know how to fix this but im not gonna help if u dont post all + buttons...
  11. [DMC]

    Server Problem

    oh he asked this for me, the problem is when nowan is inside the server it shows everyone that joins the screen were hes looking at the sky and nothing happens, no vote for new map nothing and when i start a map and it ends everything work perfect again untill its 0 players again
  12. lets give him a whole server there are over 10,000 free servers + alot pro maps here www.never-gonna-happen.com
  13. [DMC]

    /time

    I got a problem, a good friend of mine made a timeon Player for me and i was wondering how can i cancel the /time command that shows your local time
  14. [DMC]

    /login

    this? function loginPlayer ( thePlayer, command, username, password ) local account = getAccount ( username, password ) if ( account ~= false ) then name = getPlayerName(thePlayer) if getAccountName(account) == name then logIn ( thePlayer, account, password ) outputChatBox ( "Welcome", thePlayer, 255, 255, 0 ) else outputChatBox ( "ERROR: Your Username or Password is invalid", thePlayer, 255, 255, 0 ) end else cancelEvent() outputChatBox("ERROR: You can't login to this name",thePlayer,255,0,0) end end addEventHandler( "onPlayerLogin", rootElement, loginPlayer )
  15. [DMC]

    /login

    this is what i got function loginPlayer ( thePlayer, command, username, password ) local account = getAccount ( username, password ) if ( account ~= false ) then name = getPlayerName(thePlayer) if getAccountName(account) == name then logIn ( thePlayer, account, password ) outputChatBox ( "Welcome", thePlayer, 255, 255, 0 ) else outputChatBox ( "ERROR: Your Username or Password is invalid", thePlayer, 255, 255, 0 ) end else cancelEvent() outputChatBox("ERROR: You can't login to this name",thePlayer,255,0,0) end end addCommandHandler ( "login", loginPlayer
×
×
  • Create New...