-
Posts
10,056 -
Joined
-
Days Won
27
Everything posted by iPrestege
-
-- ClientSide -- sa = guiCreateWindow(255, 118, 312, 440, "King Of Server", false) grid = guiCreateGridList(9, 27, 293, 256, false, sa) c = guiGridListAddColumn(grid, "Player", 0.5) addOrRemove = guiCreateButton(10, 290, 121, 37, "ADD / Remove", false, sa) for i,v in ipairs ( getElementsByType ( "player" ) ) do local row = guiGridListAddRow ( grid ) guiGridListSetItemText ( grid, row,1,getPlayerName ( v ), false, false ) end addEventHandler ( 'onClientGUIClick',root, function ( ) if ( source == addOrRemove ) then local row,col = guiGridListGetSelectedItem ( grid ) if ( row and col and row ~= -1 and col ~= -1 ) then local pName = guiGridListGetItemText ( grid, guiGridListGetSelectedItem ( grid ), 1 ) triggerServerEvent ( 'AddOrRemoveGroupx',localPlayer,pName ) end end end ) -- ServerSide local xGroup = 'KingServer' addEvent ( 'AddOrRemoveGroupx',true ) addEventHandler ( 'AddOrRemoveGroupx',root, function ( xPlayer ) local player = getPlayerFromName ( xPlayer ) local account = getPlayerAccount ( player ) if account and isGuestAccount ( account ) then return false end local accountname = getAccountName ( account ) if ( getAccountData ( account,'inGroupx' ) == false ) then isObjectInACLGroup ( "user."..accountname, aclGetGroup ( 'Console' ) ) aclGroupAddObject ( aclGetGroup( xGroup ),'user.'..accountname ) setAccountData ( account,'inGroupx',true ) outputChatBox ( 'تمت الاضافة بنجاح',player,255,255,0,true ) else aclGroupRemoveObject ( aclGetGroup( xGroup ),'user.'..accountname ) setAccountData ( account,'inGroupx',false ) outputChatBox ( 'تمت الازالة بنجاح',player,255,0,0,true ) end end ) ما اقولك انة بيشتغل بس جرب وانا اختصرتها لك بـ زر واحد يضيف ويشيل جربة ورد لي خبر . ** لاتنسى تعطي المود صلاحياتة كاملة **
-
انت تبي تسوي مود مثل ايش تحفظ ايش مثلاً لاني ودي اساعدك بس صعبه اذا مافهمت من كل الشروحات اللي موجودة هنا .
-
استخدم ايفنت 'onPlayerLogin' وفنكشنات القريد ليست لو تعرفها لاني من الجوال حالياً وتتحقق من الحساب عندة المجموعة هذي ولالا .
-
انا مافهمت وش تبي تسوي وبعدين من اللي معدل على المود انا مدري مسوية بالساعات انا كنت مسوية بـ الفلوس عموماً مايهمنا ذا بس الحين وش تبي تسوي اذا ترقى يشيل كل الرتب اللي عندة؟ ويحطة في الرتبة اللي ترقى لها بس؟
-
http://www.ebay.com/itm/Bose-QuietComfo ... 1414201821 Looks perfect .
-
---------------------- -- ** Buy Admin's Script -- BY:Momar5600 -- server ---------------------- ----------------------- -- ** Buy Admin's Script -- Created By Mr.Pres[T]ege -- Ver 1.0.0 -- Mail : [email protected] -- [url=http://www.gta-arabs.com]http://www.gta-arabs.com[/url] ---------------------- ههههههههههههههههههه ي كثر اللي أخذو حقوق هالسكربت تقل انهم ماشافو سكربت غيره مفتوح الشفرة عموماً عدلو عليه وعدلو الحقوق ترا ماتفرق معي المهم اني عارف اني سويتة واللي يعدل عليه ويبي يعدل صح اللي فاهم برمجة صح ولا اللي مسوي السكربت كلها واحد
-
Sorry fixed some errors : function RichmanAch ( ) for k, v in ipairs(getElementsByType("player")) do local PlrAccount = getPlayerAccount(v) if not isGuestAccount( PlrAccount ) then if getAccountData(PlrAccount,"RichMan:Achievement") ~= "done" then if (getPlayerMoney(v)) >= 1000000 then outputChatBox(getPlayerName(v).."Has Reached 'RichMan' Achievement, Congratulations!", getRootElement(), 255, 0, 0, true) setAccountData(PlrAccount, "RichMan:Achievement", "done") end end end end end addEventHandler("onResourceStart", getRootElement(), RichmanAch)
-
function RichmanAch ( ) for k, v in ipairs(getElementsByType("player")) do local PlrAccount = getPlayerAccount(v) if not isGuestAccount( PlrAccount ) then if getAccountData(PlrAccount,"RichMan:Achievement") ~= "done" then if (getPlayerMoney(v)) >= 1000000 then outputChatBox(getPlayerName(v).."Has Reached 'RichMan' Achievement, Congratulations!", getRootElement(), 255, 0, 0, true) setAccountData(PlrAccount, "RichMan:Achievement", "done") end end end end end addEventHandler("onResourceStart", getRootElement(), RichmanAch) Note : Code edited
-
so i am guessing the script is ok and fine try to add another function or change the PedStat ID .
-
Any errors? /debugscript3?
-
Actually the problem could not be from the meta only thePlayer is not defined in his code.
-
You mean that you want if the player was in police team if he talks in the chat show like [Police] PlayerName : XXXXXXXXDDDDDD if like that then make your own script
-
addEvent('onBuyWeapon',true) addEventHandler('onBuyWeapon',root, function ( id , price ) if ( tonumber ( price ) and getWeaponIDFromName ( id ) ) then if ( getPlayerMoney ( source ) >= tonumber ( price ) ) then takePlayerMoney ( source , tonumber ( price ) ) setPedStat ( source, 23, 999 ) outputChatBox ( 'OK!',source,255,0,0,true ) end end end ) See if it show's the code is ok or not .
-
Seams to be ok so there's no errors and nothing in the debugscript3? are you sure you used my code up there check it again please.
-
function RichmanAch ( ) for _,thePlayer in ipairs getElementsByType ( "player" ) do local PlrAccount = getPlayerAccount(thePlayer) if not isGuestAccount( PlrAccount ) then if getAccountData(PlrAccount,"RichMan:Achievement") ~= "done" then if (getPlayerMoney(thePlayer)) >= 1000000 then outputChatBox(getPlayerName(thePlayer).."Has Reached 'RichMan' Achievement, Congratulations!", getRootElement(), 255, 0, 0, true) setAccountData(PlrAccount, "RichMan:Achievement", "done") end end end end end addEventHandler("onResourceStart", getRootElement(), RichmanAch) SERVER SIDE !
-
not work 0 warinings 0 errors Can you please show me the client side .
-
You can try this : addEvent('onBuyWeapon',true) addEventHandler('onBuyWeapon',root, function ( id , price ) if ( tonumber ( price ) and getWeaponIDFromName ( id ) ) then if ( getPlayerMoney ( source ) >= tonumber ( price ) ) then takePlayerMoney ( source , tonumber ( price ) ) setPedStat ( source, 23, 999 ) end end end )
-
جاهز هذا مهو كود لحالة هذا مود لحالة عموماً اطرح اللي سويتة ومحد بيقصر معك .
-
الشرح موجود داخل الرابط كامل
-
انا لا استعمل برنامج السكايب او الواتساب او الفيسبوك او الانستقرام او جميع البرامج الخاصة بالتواصل .
-
Actually if you need the gui window only for staff then you should use what cody's gave you above and about the shop make you'r own one and bind it to F1 .
-
^ +1 لو انت عارف الارقمنت حق الوظائف لو كـ اقل تقدير تفتح وتتاكد اذا طلع لك خطأ وتشيك عندك يطلع نفسة وتصلح خطأك وتكون تعلمت وماراح تنساه ثانية
-
https://forum.multitheftauto.com/viewtopic.php?f ... 15#p792489 هذا تابل مسوية اللي تبية نفسه بس عدل عليه بالتيم واللي تبغية وخلاص .