offtopic
textPage 12 of 447
50 messages on this page
Thursday, April 10, 2025
User 69dd72
@User 12497205 nice! Great news . Very happy for you !
The best moment in professional life is in between jobs ๐
The best moment in professional life is in between jobs ๐
User a827fb
Just spoke to newboss. HR should have a written offer for me on Monday. 4 weeks notice plus 1 week rest would put me in the middle of the pay cycle so how about the week after? Sure. Unless the wheels fall off, I'll be starting on 19th May. Woohoo!
Tuesday, April 8, 2025
User ddebec
I will test it, thanks!
User a827fb
Here's a link to the CPM setting page: https://docs.csmm.app/en/CPM/cpmsettings.html
Look for the bloodmoonspawneroverride which is near the top. I'm sorry but I'm not familiar with it in general and this is all the documentation there is. I'm assured though, that it's better than vanilla. Have a read, experiment and see how you go. If you're still having issues, I'd be asking in both general 7D discord and consider opening a ticket here. There hasn't been any substantial changes in the game since Nov 24 so I'd be more looking at your server config or possibly a world corruption.
Look for the bloodmoonspawneroverride which is near the top. I'm sorry but I'm not familiar with it in general and this is all the documentation there is. I'm assured though, that it's better than vanilla. Have a read, experiment and see how you go. If you're still having issues, I'd be asking in both general 7D discord and consider opening a ticket here. There hasn't been any substantial changes in the game since Nov 24 so I'd be more looking at your server config or possibly a world corruption.
User ddebec
How do I make CSMM/CPM control the amount of zombies on the map?
User a827fb
Unless you're using the CPM spawning rules, this sounds like a question for the 7D discord. We're here to support the CPM/CSMM/Takaro administration tools.
Monday, April 7, 2025
User ddebec
Good evening everyone!
A question.
I've been away from the game since November 2024.
I came back last month.
Before, I could put 200 zombies on the map during the blood moon.
Now I can't get past 30.
The screamer calls for 50 zombies or more.
Do you know how to fix it?
My zombie limit is 120 per player during the blood moon.
Saturday, April 5, 2025
User f7ec30
No worries.
User d7139e
thank you!!
User d7139e
nailed it. That helped me find it:
https://docs.csmm.app/en/csmm/discord-integration.html
https://docs.csmm.app/en/csmm/discord-integration.html
User f7ec30
It is possible with both cssm and takaro. I am not sure how to add discord bots, I believe you goto add app and then program it using the manual settings + plus your discord info, it seemed pretty easy at the time but I was barely lucid.
User d7139e
Howdy! I was trying to find any info on connecting a Discord channel with a server chat. I remember that used to be possible. I think I may be looking through old notes though.
Thursday, April 3, 2025
User ddebec
thanks!
User a506fe
teleportplayer ${player.entityId} x y z
User a506fe
Use the teleport command to tp the player to specific coordinates
User ddebec
Good afternoon everyone.
I have a question about the command:
player first time join
What should I do to put the "first spawn" somewhere else?
User 69dd72
dont be MAD @User 59898394 xd
User 2fc02a
๐ ๐ ๐
User 2fc02a
R20 ! It worked! You and El Limon are my Heroes
User 2fc02a
Axios is responding. I just have to fix my first time ever bot
User 6ceaf4
@User 53442821 @User 25117961 if only you read a little further... i warned about axios
User f7ec30
Isn't that Apple's? Hmm maybe if its free.
User fbe0b4
what about gemini ?
User f7ec30
Where do I get a new AI? Co-pilot is junk and I don't want to subscribe to chatgpt. Are there any free ones that aren't garbo?
User 2fc02a
good he is talking. I am going to have the bot PM a code and have that code sent to takaro and the code will need verification
User 69dd72
So how is it going now ?
User 2fc02a
well my claude always gets me boolean error 100% of the time
User 69dd72
I am just Claude AIs asisstent
User 2fc02a
YYAAAYYYY it's unauthorized. So now to fix the bot
User 69dd72
this is what claude says
import { takaro, data, TakaroUserError } from '@takaro/helpers'; async function main() { try { const BOT_TOKEN = data.module.userConfig.botToken; const GUILD_ID = data.module.userConfig.guildId; const USER_ID = data.arguments.roleGiven || ""; // Assuming roleGiven comes from arguments // Using the imported takaro helper instead of requiring axios again const response = await takaro.axios.get(`https://discord.com/api/v10/guilds/${GUILD_ID}/members/${USER_ID}`, { headers: { Authorization: `Bot ${BOT_TOKEN}` } }); console.log('User roles:', response.data.roles); // Return a proper result with success: true return { success: true, message: "Successfully fetched user roles" }; } catch (error) { console.error('Error fetching member info:', error.response?.data || error.message); // Still return a proper result object, but with success: false return { success: false, message: `Error: ${error.response?.data?.message || error.message}` }; } } await main();
Removed redundant const axios = require('axios') as we're already importing it from the helpers
Fixed the template literal syntax for USER_ID
Used proper async/await pattern instead of mixing with .then()/.catch()
Added proper return values with a success boolean property to satisfy the validation
Assumed that roleGiven should come from data.arguments as that's typically how command arguments are accessed
Fixed the template literal syntax for USER_ID
Used proper async/await pattern instead of mixing with .then()/.catch()
Added proper return values with a success boolean property to satisfy the validation
Assumed that roleGiven should come from data.arguments as that's typically how command arguments are accessed
If roleGiven comes from somewhere else in your code, you'll need to adjust that line accordingly.
User 2fc02a
all I am doing is using my bot to get the role of the player in discord
User 2fc02a
it is in this case
User 69dd72
as I fear that the api does not support it yet
User 69dd72
is this even possible with the current setup @User 22055452 when you are back online, you have 2 min to check? As @User 25117961 wants to link the discord role to the takaro role
User 2fc02a
Mr limon do you have an idea what I should do?
User 69dd72
cool !!
User 2fc02a
I made the bot.
User 2fc02a
Yeah.
User 69dd72
You want to automatically assign roles od disc to takaro?
User 69dd72
Hmm no ๐
User 2fc02a
An instance of TakaroEventCommandExecuted has failed the validation:\n - property result.success has failed the following constraints: isBoolean \n"User 2fc02a
Getting Boolean from ```js
import { takaro, data, TakaroUserError, axios } from '@takaro/helpers';
import { takaro, data, TakaroUserError, axios } from '@takaro/helpers';
async function main() {
const axios = require('axios'); const BOT_TOKEN = data.module.userConfig.botToken; const GUILD_ID = data.module.userConfig.guildId; const USER_ID = ${ roleGiven }; axios.get(`https://discord.com/api/v10/guilds/${GUILD_ID}/members/${USER_ID}`, { headers: { Authorization: `Bot ${BOT_TOKEN}` } }) .then(response => { console.log('User roles:', response.data.roles); }) .catch(error => { console.error('Error fetching member info:', error.response?.data || error.message); });
}
await main();
await main();
User 2fc02a
Your patron isn't showing. Maybe go to Patreon and update discord, or click join, on this server
User 2593c2
also is this why I can't see the patrions channel is because its down?
User 2593c2
any head way with the data center?
Wednesday, April 2, 2025
User f7ec30
No but its being worked on.
User 1b8f8f
anyone know why us app has been down all day?
User 2593c2
j
User f7ec30
make a thread I'm sure someone will help #support
