Jump to content

Bazoookaaa

Members
  • Posts

    90
  • Joined

  • Last visited

Everything posted by Bazoookaaa

  1. But the server is in arabic O_o and i cant find any page related to the clan
  2. If anybody in the forum is admin of the S30D server plis unban me because some guy ban me for no reason i only say that someone press f4 for change team in Basemode so plis unban me! Nick ingame : x|CkD|xBazoookaaa
  3. Ok im very noob in this stuff ^^ thanks very much
  4. outputChatBox("#FF0000 *** ADMIN HAS GIVEN MONEY: #00FF00" .. al3grab .. "$ #FF0000 TO ALL PLAYERS *** ", root, 255,0,0,true) --and this is definitely not supposed to be in the For Loop Why dont supposed to be if its the message thats the admin send money?
  5. Hi i was trying to modified Al3grab´s resource to only the owner of the server can use the function of send money to all players but it gives me error it says: ERROR: money-all \ money-all.lua:15: "" expected near "(" i dont know what it means Heres my code (in server-side) : addCommandHandler ( "sa",send) function ( player, cmd, al3grab ) if isObjectInACLGroup ( "player" .. accountname, aclGetGroup ( "Console" )) then if tonumber ( al3grab ) ~= nil then for id, player in ipairs ( getElementsByType ( "player" ) ) do givePlayerMoney ( player, tonumber ( al3grab ) ) outputChatBox("#FF0000 *** ADMIN HAS GIVEN MONEY: #00FF00" .. al3grab .. "$ #FF0000 TO ALL PLAYERS *** ", root, 255,0,0,true) end end end end ) -- *** Script Code | Server-Side *** -- *** Fake Send Code | Server-Side *** function fsend ( player , cmd , fal3grab ) if isObjectInACLGroup ( "player" .. accountname, aclGetGroup ( "Console" )) then if tonumber ( fal3grab ) ~= nil then outputChatBox("#FF0000 *** ADMIN HAS GIVEN MONEY: #00FF00" .. fal3grab .. "$ #FF0000 TO ALL PLAYERS *** ", root, 255,0,0,true) end end end addCommandHandler ( "fsa",fsend) -- *** Fake Send Code | Server-Side *** -- *** End Of Script *** Plis help!
  6. Voted! This year should win this year it deserves this prize!
  7. Bazoookaaa

    C-bug

    Heres my code function resourceStart () setGlitchEnabled ( "quickreload", true ) setGlitchEnabled ( "fastmove", true ) setGlitchEnabled ( "fastfire", true ) setGlitchEnabled ( "crouchbug", true ) end addEventHandler ( "onResourceStart", getResourceRootElement ( ), resourceStart ) function resourceStop () setGlitchEnabled ( "quickreload", true ) setGlitchEnabled ( "fastmove", false ) setGlitchEnabled ( "fastfire", false ) setGlitchEnabled ( "crouchbug", false ) end addEventHandler ( "onResourceStop", getResourceRootElement ( ), resourceStop )
  8. Bazoookaaa

    C-bug

    I tryied that but i cant do c-bug very well D: but in a sv i saw SAMP C-BUG by x[HoW]x and i dont know where can i get it
  9. Bazoookaaa

    C-bug

    Hi i make this topic to make a question Where can i get the SAMP C-BUG by x[HoW]x for MTA (obviously) ? cuz i cant find it anywhere plis someone send me a link
  10. In the wiki it says only how to replace with cars or buildings but no with guns!
  11. Hi i wanna replace the crosshair of the sniper to put in my Basemode server but i dont know how i downloaded this crosshair: And the folder contains a file (sniper.txd) The usual way to install its replacing in gta3.img but for MTA how can i make a script for replace the original crosshair? Plis help me to solve this out!
  12. The trick to show the dxscoreboard is deleting all the FILES of the old scoreboard NOT FOLDER copy the FILES of dxscoreboard and paste it in the FOLDER of the original scoreboard thanks all
  13. HI i was trying to put some columns in dxscoreboard such as ID, Kills, Deaths, Health, Damage, FPS and Money GOOD! The columns appear but it doesnt show no data (eg. I create a column called Kills and the resource add to the dxscoreboard but when i kill someone the Kills column it stills shows 0 instead of 1) Heres my code: Kills Client: addEventHandler ( "onClientResourceStart", getRootElement(), function (resource) if resource == getThisResource() then exports.scoreboard:scoreboardAddColumn ( "Kills" ) setElementData ( getLocalPlayer ( ), "Kills", 0 ) end end ) function refreshKills() local kills = getPlayerKills( getLocalPlayer() ) setElementData( getLocalPlayer(), "KILLS", kills ) end setTimer( refreshKills, 2000, 0 ) Kills Server: addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() call(getResourceFromName("dxscoreboard"),"addScoreboardColumn","Kills") end ) Damage Client: addEventHandler ( "onClientResourceStart", getRootElement(), function (resource) if resource == getThisResource() then exports.scoreboard:scoreboardAddColumn ( "DMG" ) setElementData ( getLocalPlayer ( ), "Damage", 0 ) end end ) function refreshDamage() local damage = getPlayerDamage( getLocalPlayer() ) setElementData( getLocalPlayer(), "DAMAGE", damage ) end setTimer( refreshDamage, 2000, 0 ) Damage Server: addEventHandler("onResourceStart",getResourceRootElement(getThisResource()), function() call(getResourceFromName("dxscoreboard"),"addScoreboardColumn","DMG") end ) Plis help me!
  14. i already did it but it stills shows the old scoreboard why?
  15. Hi all! I just downloaded the dxscoreboard resource and i replace with the old scoreboard but it stills shows the old scoreboard i dont know why heres some pics PLIS HELP ME!!
×
×
  • Create New...