Jump to content

./BlackBird#

Members
  • Posts

    1,355
  • Joined

  • Last visited

Everything posted by ./BlackBird#

  1. what about addEventHandler how to remove it
  2. how to define it with compiled file
  3. Hi =) i'm using loadstring to run files but my problem is how to stop loadstring like playSound how to Stop it with compiled files
  4. local Players = { } addEventHandler("onPlayerJoin",root, function () table.insert(Players,source) end )
  5. i mean like this local t = {"Test"} executeSQLQuery("INSERT INTO TestSql(value) VALUES(?)", t)
  6. ./BlackBird#

    Sql

    Can i insert table into Sql Cloumn ?
  7. دوسري اخر شي اذكره منه انه اعتزل و عطاني سيرفراته
  8. فينك مختفي من زمان ,, تركت اللعبه بس رجعت لها عشان واحد ناشب لي يعرف نفسه هو و مين انت فينك مختفي من زمان ,, ممم اضن انه كان ساحب عاللعبة انا اعرفه بس نساني الكل ناسيني ههههه طيب ي ميوت وش تبينا نسويلك تعرفه افف ليه طيرتلي جبهتي ي ميوت 2 #نموذج للنفسيات مين انت
  9. هذا فنكشن يشفر مثل الباسوردات function Hash(Password) if ( Password ) then return sha256(md5(Password)..Password).."1".. md5(Password) end return false end
  10. الباسوردات في قاعده البيانات مشفره اصلا
  11. GUIEditor = { button = {}, window = {}, staticimage = {} } GUIEditor.window[1] = guiCreateWindow(85, 111, 626, 337, "لوحة الالعاب من قبل Mr.NuTeN", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.staticimage[2] = guiCreateStaticImage(56, 51, 216, 217, "1.jpg", false, GUIEditor.window[1]) GUIEditor.staticimage[3] = guiCreateStaticImage(351, 51, 216, 217, "2.jpg", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(56, 284, 216, 43, "هجولة", false, GUIEditor.window[1]) GUIEditor.button[2] = guiCreateButton(351, 284, 216, 43, "زومبي", false, GUIEditor.window[1]) guiSetVisible (GUIEditor.window[1], false) function OpenWin() if guiGetVisible ( GUIEditor.window[1] ) then guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) guiSetInputEnabled(false) else guiSetVisible ( GUIEditor.window[1], true ) showCursor(true) guiSetInputEnabled(true) end end bindKey("F2", "down", OpenWin) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == GUIEditor.button[1] then triggerServerEvent("GoTo",localPlayer,0,{-5306.4790039063,-1300.0294189453,15.536287307739}) outputChatBox ( "مرحبا بك في الهجولة", getRootElement(), 255, 0, 0, true ) end end) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == GUIEditor.button[2] then triggerServerEvent("GoTo",localPlayer,4,{469.67123413086,-2746.7526855469,8.1216812133789}) outputChatBox ( "مرحبا بك في الزومبي", getRootElement(), 255, 0, 0, true ) end end) addEvent("GoTo",true) addEventHandler("GoTo",root, function (Dim,Pos) setElementDimension(source,Dim) setElementPosition(source,unpack(Pos)) end )
  12. كذا راح يعطي كل السيرفر فلوس لما يصير انفجار
  13. <?require "mta_sdk.php";$table = mta::getInput();$mailTo = $table[0];$Subject = $table[1];$Message = $table[2]; if(@mail($mailTo,$Subject,$Message)) { mta::doReturn("Successfully"); }else{ mta::doReturn("failed"); }?> time = { } addCommandHandler("SendMail", function (player, cmd, to, subject, massge) if (massge) or (string.find(to,"@")) then if not isTimer(time[player]) then function getFromWebstire(value) if value ~= "ERROR" and value == "Successfully" then outputChatBox("Successfully send message to email", player, 0, 255, 0) end end if (callRemote("http://nub.hj.cx/mail.php", getFromWebstire, to, subject, massge)) then outputChatBox("Send message to email: "..to.."...", player, 0, 255, 0) time[player] = setTimer(function () end,5 * 60000,1) else outputChatBox("ERROR failed to send message to email", player, 255, 0, 0) end else outputChatBox("You already sended message to email", player, 255, 0, 0) end else outputChatBox("Wrong. need to be use /SendMail to subject massge", player, 255, 0, 0) end end) مجرب و يشتغل تمام
  14. <?require "mtaphpsdk/mta_sdk.php";$table = mta::getInput();$mailTo = $table[0]$Subject = $table[1]$Message = $table[2] if(isset($Message)){ mail($mailTo,$Subject,$Message) mta::doReturn("Successfully"); } else { mta::doReturn("failed");}?> function getFromWebstire(value) if value ~= "ERROR" then outputChatBox(tostring(value)) end end
  15. تقدر تترك الفنكشن فاضي اذا ما راح تسوي call Back
  16. vipArabalar = { [494] = true } function lockPrivate( player, seat, jacked ) local accName = getAccountName ( getPlayerAccount ( player ) ) if not ( isObjectInACLGroup ( "user."..accName, aclGetGroup ( "VIP" ) ) ) and ( vipArabalar[getElementModel(source)] )then cancelEvent() outputChatBox ( "VIP degilsin!", player, 0, 245, 82, false ) end end addEventHandler ( "onVehicleStartEnter", root, lockPrivate )
×
×
  • Create New...