Jump to content

PlayAkoya

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by PlayAkoya

  1. @Dealman: That's a whole Gamemode I do not know in which file the problem is there are 1260 files and the script I do not want to publish. That's why I need to find a different solution to the Debugen and need your help because..
  2. Good day everybody, I have for some time been major problems with the timers on my server. The timer only run for a certain time and then they no longer go all the timers on the server are then death. I checked there are a total of 49 timer but which are in the Gamemode I get no error message, all timers are properly scripted. /debugscript 3 I am already for days and hours of error search but I do not find him and am just still a loss, I hope someone has a tip or a solution ?! DEBUG If I can not find my error Gamemode throw away. Hopefully someone has an idea why this may be my script has 1260 files and to find the error is very difficult..
  3. Good day everybody, in the winter time starts here in Germany the ice skating rink. I would like scripting and mapping a ice skating rink for MTA. I would like ice skates for the Peds/Players I googled after ice skates mod/texture/shader unfortunately I have found nothing. How an ice skating rink mapping is not a problem! How could I implement such a thing? Please your ideas..
  4. PlayAkoya

    $ to €

    Here it should be after you choose: https://community.multitheftauto.com/in ... ls&id=7401
  5. Hi, i use the Resource https://community.multitheftauto.com/in ... ls&id=2540 My Script: function onGivePlayerPizzaBox (player) if (getPlayerName(player) == "[sR]PlayAkoya") then local pname = getPlayerName(player) burger = createObject(2880, 0, 0, 0) --1582 setElementDimension(burger, 0) attachElementToBone(burger, player, 12, 0, 0, 0, 0, -90, 0) outputChatBox("Debug: PIZZA FIXSIERT!", root, 200, 200, 0) else outputChatBox("Du bist nicht befugt den Test Command zu nutzen!", player, 200, 0, 0) end end addCommandHandler("pizza", onGivePlayerPizzaBox, false, false) The objects are not firmed on players?! Can anyone help, please?
  6. Hi im from Germany, i need your help, with my problem. I would like the sign to each other are all dollar $. The prices are all under one another as I do that? SexShopGridlist = guiCreateGridList(10, 136, 261, 238, false, getSexShopGUI) getSexID = guiGridListAddColumn(SexShopGridlist, "ID", 0.10) getSexProduktname = guiGridListAddColumn(SexShopGridlist, "Produkt", 0.64) getSexPrice = guiGridListAddColumn(SexShopGridlist, "Preis", 0.18) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "1", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Durex Kondom-Packung 12St", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, "19.95$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "2", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Durex Kondom-Packung 36St", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, " 54.99$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "3", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Durex Gleitgel 50ml", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, " 9.99$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "4", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Taschen Vagina", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, "129.95$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "5", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Kleiner weißer Dildo", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, " 29.95$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "6", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "Großer weißer Dildo", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, " 89.99$", false, false) local row = guiGridListAddRow(SexShopGridlist) guiGridListSetItemText(SexShopGridlist, row, getSexID, "7", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexProduktname, "XXL lila Dildo", false, false) guiGridListSetItemText(SexShopGridlist, row, getSexPrice, "119.95$", false, false) I've tried with spaces but do not get it all the dollar signs left standing out among themselves! Sorry for my bad English.
  7. Sorry , I 've looked at fetchRemote and find the Wiki in confusing you could give me in implementing my idea help I would probably need to days for the test, and find out how I need scripts .
  8. Hi, Load images from website? For recordable from Google Images: http://www.next-gamer.de/wp-content/upl ... /url17.jpg --Useful Function: function getImageFromWebsite(url) if (url) then local getImageData = --[FUNCTION give the image?? HELP ME pls..] else local getImageData = nil end return getImageData end guiCreateStaticImage(0, 0, 500, 281, tostring(getImageFromWebsite), true) Hope someone here has a chance?
  9. Hi, i have created a guiGridList and would like the players are always updated. If I choose a player disappears always marking. After updating always disappears My choice and that must not happen? function refreshGridList() if isElement(newGridlist) then guiGridListClear(newGridlist) for id, player in ipairs (getElementsByType ("player")) do local row = guiGridListAddRow(newGridlist) guiGridListSetItemText(newGridlist, row, column, getPlayerName(player), false, false) end end end function createGridList() newGridlist = guiCreateGridList(0.50, 0.50, 0.20, 0.30, true) column = guiGridListAddColumn(newGridlist, "Players", 0.85) if (column) then for id, player in ipairs(getElementsByType("player")) do local row = guiGridListAddRow(newGridlist) guiGridListSetItemText(newGridlist, row, column, getPlayerName(player), false, false) end end getGridListTimer = setTimer(refreshGridList, 500, -1) guiGridListSetSortingEnabled(newGridlist, false) end I hope someone can help me how to truly important to me!
  10. @HunT: I only need the Mod for object. I just want a Tablet Mod have where I write about another object with which I need .dff / .txd / COL file. It would be very nice if you could do that to me.
  11. @HunT: Thx, for your Help. I looked for an object or model. Unfortunately , it takes several days for me 3DS Max downloading. Can you tell me please convert to the .dff & .txd ( COL ) file? http://tf3dm.com/3d-model/ipad-11219.html
  12. Hi, I am looking for an object mod/texture that looks like a Tablet? Example how the http://www.gtainside.com/sanandreas/wea ... -psp-bomb/ The question now is someone knows a page where I as a texture / Mod getting? And if not how I could make such a mod itself ? I hope you can help me.
  13. I have yet to "false". But why is it not working?
  14. Hi, if one gets the Ped harm is not interrupted the animation? getDrugDealerPeds = createPed(293, 2195.8599023438, 933.20001220703, 10.800000190735, 270) setElementFrozen(getDrugDealerPeds, true) setTimer(setPedAnimation, 2000, -1, getDrugDealerPeds, "SMOKING", "M_smklean_loop", -1, true, false, true) I'm counting on your help.
  15. Thx, it works well. There are still a problem, when I use the command frequently then the port will always be added? And that's not good. serverIP = false fetchRemote("http://ip4.telize.com/", function(r,e) if e == 0 then serverIP = r else print("error "..e.." when getting serverip !" ) end end) function getServerIP () serverIP = tostring(""..serverIP..":"..getServerPort().."") serverIP = string.gsub(serverIP, "%s+", "") return serverIP; end function getServerPutWithIP() outputChatBox("The server ip is: "..getServerIP().."", root, 200, 200, 0) end addCommandHandler("serverip", getServerPutWithIP)
  16. Look in the title! Example: createTimeValue = tostring("21 : 10") I hope there is a way!
  17. Was recorded in the bug tracker, and now processes! https://bugs.multitheftauto.com/view.php?id=8991
  18. There you'll find examples of this! https://wiki.multitheftauto.com/wiki/CreateTeam
  19. Hi, unfortunately my MTA request was refused and I still have not found a solution here hope someone can help me ? https://bugs.multitheftauto.com/view.php?id=8992 Here's a test: function getServerIp() callRemote("http://box.houkouonchi.jp/ip.php", function(value) value = tostring(value) end) return value end function getServerPutWithIP() outputChatBox("The server ip is: "..getServerIp().."", root, 200, 200, 0) end setTimer(getServerPutWithIP, 30000, -1) I always get an error message = nil It's not working Please Please help me ..
×
×
  • Create New...