Jump to content

MaLai

Creator
  • Posts

    160
  • Joined

  • Last visited

Everything posted by MaLai

  1. MaLai

    Shop Controller | UI

    Hey, Is this plugin supporting multiple currency or I did I have to use one currency? As example: I want to sell testcommand 1 for scrap and testcommand 2 for RP. Is this possible or do I have to set scrap, RP etc. For all items/commands etc.?
  2. The new Oil rigs are already on the map. Did you even visit the oilrigs on the map? I think no.
  3. Sorry but this something you have to do on your own. There are a lot of tutorials on youtube how to make rivers, roads, editing terrain and placing monuments. You should watch some videos. Its really exciting.
  4. So... Did you read the Readme file and installed Rustedit.dll correctly? Without i/o is not working. You can change the monument names with Rustedit tool. And the Monuments are not using our nickname. Its a Label and is used in multiple monuments.
  5. My English isn't that good. Here is a guide how to install custom maps. I hope this will help you. https://www.4netplayers.com/en/wiki/rust/custom-map-installation/#:~:text=First%2C upload your map to,you will need it later. Or here:
  6. Hey everything is working fine. I just tested the Beach Club. The problem must be by the server owner. Here some screenshots:
  7. The green one should be powered than. If not then maybe something broke. I will look after the weekend into it and will test it myself. When it's a map issue on our side then we will fix it.
  8. MaLai

    Triangulation

    If you stay on top of a attack helicopter then the animals can't do damage to the player.
  9. MaLai

    Mallorca by MaLai

    The Map is getting a update with a new monument and some improvements. Since my girlfriend and I moving together we don't have much time at the moment. We hope we can get the update ready in mid january.
  10. Version 1.0.0

    7 downloads

    It's Christmas time! Decorate your map for christmas with this beautiful and lovely christmas pack! This pack contains four small christmas prefab each of them have unique loot containers and can be used for points of interests, decoration or as roadside "junkpiles". Need more christmas stuff? Look here:
    $9.99
  11. MaLai

    Missing parts after update

    Changed Status from Pending to Closed
  12. MaLai

    Missing parts after update

    Changed Fixed In to 1.0.3
  13. MaLai

    Missing parts after update

    It's already updated. Facepunch made changed with the frontier parts. Some parts are invisible now and new parts are added. Please download the latest version.
  14. Version 1.0.4

    29 downloads

    Come and visit Santa's lovely detailed home and workstation! See where Santa lives and how he produce all the gifts for christmas! The monument comes with a red card puzzle. Repair Santa's workstation to get access to his home! Happy Xmas! Need more christmas stuff? Look here:
    $12.99
  15. Version 1.0.3

    29 downloads

    Christmas is coming! Enjoy your map with this sweet and lovely detailed christmas village. The village contains two vending machines selling christmas stuff like christmas tree, candy's etc. Also this monument comes with two puzzle. The first puzzle needs only a green card and the second puzzle needs a green and blue card. Happy Xmas Need more christmas stuff? Look here:
    $14.99
  16. We was really thinking if this a joke. If not: No. This is a one grid map. Besides that all monuments would never fit on the map. Its designed for server that wants a small map with some monuments and a lot of fps.
  17. Hey, I fixed it myself. For other people who got this problem this is the fix: The problem is there: if (isStaffMember) { if (isApproval) { try { for (const rcon of rconConnections) { let addSkinCommand = ''; if (pluginSkins === 'lskins') { addSkinCommand = `lskins add ${skinId}`; } else if (pluginSkins === 'skincontroller') { addSkinCommand = `addskin ${skinId}`; } else if (pluginSkins === 'skinbox') { addSkinCommand = `skinbox.addskin ${skinId}`; } else if (pluginSkins === 'custom') { addSkinCommand = `${customCommand} ${skinId}`; } await rcon.send(addSkinCommand); const acceptMessage = ` **Skin Accepted on ${rcon.server_name}** \n\nSkin ID: ${skinId}\nAccepted by ${member}`; client.channels.cache.get(logs).send(acceptMessage); } } catch (error) { console.error(error); requestMessage.channel.send('Error adding the skin.'); } } else { const rejectMessage = ` **Skin Rejected on ${rcon.server_name}** \n\nSkin ID: ${skinId}\nRejected by ${member}`; client.channels.cache.get(logs).send(rejectMessage); } requestMessage.reactions.removeAll().catch(error => console.error('Error removing reactions:', error)); const pendingSkinIndex = pendingSkins.findIndex(skin => skin.skinId === skinId); if (pendingSkinIndex !== -1) { pendingSkins.splice(pendingSkinIndex, 1); savePendingSkins(); } } } }); On: } else { const rejectMessage = ` **Skin Rejected on ${rcon.server_name}** \n\nSkin ID: ${skinId}\nRejected by ${member}`; client.channels.cache.get(logs).send(rejectMessage); rcon.server_name = rcon is not defined in the code. So I added a definition to that: for (const rcon of rconConnections) { const rejectMessage = ` **Skin Rejected on ${rcon.server_name}** \n\nSkin ID: ${skinId}\nRejected by ${member}`; client.channels.cache.get(logs).send(rejectMessage); } Now its working.
  18. Installed 18.13 its still not working. Npm Packages are installed. Sorry we are not interested on another subscription also we have a dedicated windows server. PS C:\Users\Administrator\desktop\discord2skinbox> node app.js Loaded Pending Skins: 2 RCON Connection Established for server at 45.138.49.49:27025. Ready! Connected as Hansi#5040 node:events:491 throw er; // Unhandled 'error' event ^ ReferenceError: rcon is not defined at Client.<anonymous> (C:\Users\Administrator\desktop\discord2skinbox\app.js:214:64) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Emitted 'error' event on Client instance at: at emitUnhandledRejectionOrErr (node:events:394:10) at process.processTicksAndRejections (node:internal/process/task_queues:84:21) Node.js v18.13.0
  19. Where? I find on previous releases only Node.js 18.19.0 https://nodejs.org/en/about/previous-releases
  20. Hello, we getting this error whenever we reject a skin: PS C:\Users\Administrator\desktop\discord2skinbox> node app.js Loaded Pending Skins: 1 RCON Connection Established for server at 45.138.49.49:27025. Ready! Connected as Hansi#5040 node:events:495 throw er; // Unhandled 'error' event ^ ReferenceError: rcon is not defined at Client.<anonymous> (C:\Users\Administrator\desktop\discord2skinbox\app.js:214:64) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Emitted 'error' event on Client instance at: at emitUnhandledRejectionOrErr (node:events:398:10) at process.processTicksAndRejections (node:internal/process/task_queues:84:21) Node.js v18.19.0 PS C:\Users\Administrator\desktop\discord2skinbox> Adding a skin (accepting) works fine. **Posted this already in Support Forum**
  21. MaLai

    Error when skin rejected

    Hello, we getting this error whenever we reject a skin: PS C:\Users\Administrator\desktop\discord2skinbox> node app.js Loaded Pending Skins: 1 RCON Connection Established for server at 45.138.49.49:27025. Ready! Connected as Hansi#5040 node:events:495 throw er; // Unhandled 'error' event ^ ReferenceError: rcon is not defined at Client.<anonymous> (C:\Users\Administrator\desktop\discord2skinbox\app.js:214:64) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Emitted 'error' event on Client instance at: at emitUnhandledRejectionOrErr (node:events:398:10) at process.processTicksAndRejections (node:internal/process/task_queues:84:21) Node.js v18.19.0 PS C:\Users\Administrator\desktop\discord2skinbox> Adding a skin works fine.
  22. Version 1.0.1

    13 downloads

    Cookie Island is a one grid map designed for both PVE and PVP Server. The Map have beautiful places and is also tactical designed. As example if you want a red card then you need to travel around the Island to get one. If you just want a small beautiful map for your PVE Server then this map gives you two wonderfull lakes connected to a river and harmony landscape. Everything is manual created and placed! The Map contains custom monuments and a custom fishing village. The fishing village contains all mission npc, airwolf, all shops, boat vendor, blackjack, slotmachine and the wheel of fortune! There is also both Oilrigs and a underground tunnel system. Custom Monuments: MaLai's - Gas Station MaLai's - Warehouse MaLai's - Beach Club MaLai's - Fishing Village Monuments by Facepunch: Both Oilrigs Lighthouse Password comes with the map. Entity Count: 3416
    $19.99
  23. MaLai

    The Red Button

    "5. Custom Command 1 : Command": "inventory.giveto {playerid} paper 10 2856928771",
  24. MaLai

    The Red Button

    This isn't working. I just get paper instead of a skinned paper.
1.7m

Downloads

Total number of downloads.

7.8k

Customers

Total customers served.

117.9k

Files Sold

Total number of files sold.

2.4m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.