Jump to content

PlayAkoya

Members
  • Posts

    40
  • Joined

  • Last visited

PlayAkoya's Achievements

Rat

Rat (9/54)

0

Reputation

  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
×
×
  • Create New...