Welcome, Guest!!
follow us on... Facebook twitter youtube rss

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Dante Marshal

Pages: [1]
1
Winter 2021 / Re: Christmas Delivery Service - 2021!
« on: November 17, 2021, 03:16:19 PM »
- In-game username: DanteMarshal
- Do you agree to follow the gifting rules written above? Yep
- What would you like for Christmas this year?
IRL : Success in the project I'm working on
Minecraft : I dunno :D

2
Server Announcements / Re: Economy changes- Public Survey
« on: July 17, 2020, 06:38:52 AM »
Hi Peeps, I've got a few Ideas for this.
I've been thinking, The reason why people don't really use Player Shops is because either resources are easy to mine / gather, Or they are already available in Server's main shop so they don't bother searching for a player shop that sells them.
If we want to encourage people to use Player Shops more often, I can think of two more steps to take :
1. If we reduce the Server shop to include only non-renewable raw resources (e.g. Ores & Spawn Eggs) and no Processed, Growable or Craftable items, People will have to either build more Farms or Buy their required renewable resources from other players if they're in a hurry.
2. With Public farms around, Farming is too easy so anyone can go take anything they want from a farm instead of Buying them or Farming them themselves. This case is harder to solve and I could only think of Charging people for using public farms, Something like what Panda does when you spawn at Market (Charging 25$) but a little bit more harsh and harder so farming or buying from other players is Preferred.

3
Guides / Re: Guide to finding logs
« on: September 18, 2018, 05:18:10 PM »
First of all, Just in case, The "logs" folder is not necessarily in that address. Yeah it's the default but some launchers can change it.

Now the Linux Guide :

First Note : There are a lot of Desktop Environments and File Managers for each Distribution of Linux, So there really isn't a one way of finding logs, But the most common way between all dists is to use Terminal so I first do it with terminal commands and then I'll try to show how you do it using XFCE4 desktop and Thunar File manager.

Linux Guide (using Terminal) :
1. cd to your logs directory ($HOME/.minecraft by default). Note that you may change your minecraft directory path through your launcher (If your launcher supports this action)
Code: [Select]
cd ~/.minecraft/logs
2. Just like windows, Most recent logs are available in clear text format, So you can just view them on terminal using :
Code: [Select]
cat latest.log
3. If you happen to need to extract one of older logs, Use
Code: [Select]
gunzip --keep <filename> to extract them. i.e.
Code: [Select]
gunzip --keep 2018-09-17-4.log.gzNote that if you miss the --keep option, Your archive file (.gz) will be deleted.
Then you can display the contents like before, Except this time filename is the same as your archive without the ".gz" in the end, i.e.
Code: [Select]
cat 2018-09-17-4.log
Linux Guide (using XFCE4 Desktop + Thunar File Manager) :
1. Open Thunar and navigate to your home :


2. Press Ctrl + H (or from menus : View => Show Hidden Files) and make sure your hidden files (those starting with dot) are shown :


3. Go to ".minecraft" folder, Then to "logs" folder :

4. Here you can open the latest.log file to view latest logs, Or extract any of those archives using Engrampa or any other archive manager you have on your os (.gz requires gunzip to be installed) then open the log file.

Pages: [1]