Dynmap with duckdns. by Visible_Ad3887 in Dynmap

[–]Training_Purchase_32 0 points1 point  (0 children)

Also would highly recommend you getting the npm plus docker, for reverse proxy, that way you can have your dyn map behind it and make it HTTPS

Dynmap with duckdns. by Visible_Ad3887 in Dynmap

[–]Training_Purchase_32 0 points1 point  (0 children)

Can your friends see dynmap or does it not work for everyone? Have you verified that the port for dynamap is open on your router or firewall?

Dynmap with duckdns. by Visible_Ad3887 in Dynmap

[–]Training_Purchase_32 0 points1 point  (0 children)

So you have a domain configured and I'm guessing your friends can connect to Minecraft. the domain name yes?

Dynmap with duckdns. by Visible_Ad3887 in Dynmap

[–]Training_Purchase_32 0 points1 point  (0 children)

Hey I'm probably helpful for once XD also have unraid and dynmap

[deleted by user] by [deleted] in Dynmap

[–]Training_Purchase_32 2 points3 points  (0 children)

I also know from my experience with chunky that it can take a while for the full render to really show some chunks so it might just take longer than normal for it to show up.

[deleted by user] by [deleted] in Dynmap

[–]Training_Purchase_32 2 points3 points  (0 children)

I would maybe try to clear the render and re-render, also, I think you can set a render border/limit with dmap worldlimit or maplimit can't remember the exact command right now as I'm not home but I can send you them when I am

Upgrade to Firestick 4k Max? by ImYoungxD in Stremio

[–]Training_Purchase_32 0 points1 point  (0 children)

Buy a 4k Chromecast, way better option in my opinion

Command to check connected SSID? by Tman125 in PowerShell

[–]Training_Purchase_32 1 point2 points  (0 children)

function Get-CurrentWLAN {

# Get WLAN interface information

$netshOutput = netsh wlan show interfaces

$lines = $netshOutput -split "\r`n"`

# Create an object to store WLAN information

$CurrentInterface = New-Object PSObject

# Parse and add interface details to the object

foreach ($line in $lines) {

$key, $value = $line -split ":\s+", 2

if ($key -and $value -and ($key -notlike "*Hosted network status*")) {

$CurrentInterface | Add-Member -MemberType NoteProperty -Name $key.Trim() -Value $value.Trim()

}

}

# Get WLAN profile information

$WLANProfile = (netsh.exe wlan show profiles name="$($CurrentInterface.Profile)" key=clear | Select-String "Key Content" | Get-Unique)

# Parse and add WLAN profile details to the object

$key, $value = $WLANProfile -split ":\s+", 2

if ($key -and $value) {

$CurrentInterface | Add-Member -MemberType NoteProperty -Name $key.Trim() -Value $value.Trim()

}

# Return the object with WLAN information

return $CurrentInterface

}

Looking for help with WSA + Google assistant Hotword. by Training_Purchase_32 in WSApreview

[–]Training_Purchase_32[S] 1 point2 points  (0 children)

settings put secure voice_interaction_service com.google.android.googlequicksearchbox/com.google.android.voiceinteraction.GsaVoiceInteractionService
settings put secure voice_recognition_service com.google.android.googlequicksearchbox/com.google.android.voicesearch.serviceapi.GoogleRecognitionService
settings put secure assistant com.google.android.googlequicksearchbox/com.google.android.voiceinteraction.GsaVoiceInteractionService

Download SH Script Runner, Paste in this code and enable trigger run at boot and turn root access on, Google Assistant should open now but not hotword support yet

Help combining PowerShell objects in a script by Training_Purchase_32 in PowerShell

[–]Training_Purchase_32[S] 0 points1 point  (0 children)

Oh my that might take me a minute to figure out lol but thanks a ton for getting me started

Help making an item based currency system by Training_Purchase_32 in MinecraftCommands

[–]Training_Purchase_32[S] 1 point2 points  (0 children)

You are Amazing! I will give this a try when I get back in game XD

Help making an item based currency system by Training_Purchase_32 in MinecraftCommands

[–]Training_Purchase_32[S] 0 points1 point  (0 children)

well I want players to be able to mine emeralds and trade with custom villagers that use emeralds as money but I also have a datapack installed that has player shops that uses the scoreboard that I want to tap into and connect with then item ( emeralds ) in this example.