Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,898
» Latest member: Glassvwk
» Forum threads: 5,151
» Forum posts: 41,373

Full Statistics

Online Users
There are currently 18 online users.
» 0 Member(s) | 17 Guest(s)
Bing

Latest Threads
Last Chaos Server Sale
Forum: The Black Market (Buy, Sell, Trade)
Last Post: XWrongX2
01-26-2026, 11:07 PM
» Replies: 3
» Views: 594
All in One Exporter
Forum: Tools
Last Post: Kain88
01-25-2026, 07:04 AM
» Replies: 4
» Views: 413
HELP! ReZasCashServer It ...
Forum: Ep4 Support
Last Post: Kain88
01-24-2026, 03:24 PM
» Replies: 2
» Views: 142
Hi, does anyone know the ...
Forum: Help
Last Post: Desarija
01-21-2026, 11:29 AM
» Replies: 1
» Views: 103
LastChaos Nemesis
Forum: Server Advertising
Last Post: Desarija
01-20-2026, 04:06 PM
» Replies: 3
» Views: 221
Looking for EP4 Guidance
Forum: General Discussion
Last Post: xHypnosiaa
01-19-2026, 08:33 AM
» Replies: 1
» Views: 163
We're in need of creative...
Forum: Project Recruitment
Last Post: RGT
01-16-2026, 12:48 AM
» Replies: 0
» Views: 109
Last Chaos build deployme...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-08-2026, 11:14 AM
» Replies: 0
» Views: 64
Last Chaos global server ...
Forum: Ep4 Guides
Last Post: xHypnosiaa
01-07-2026, 07:01 PM
» Replies: 0
» Views: 24
EP-2/EP-3 Mixed files
Forum: Archived General Server Releases
Last Post: TeKnodE
01-06-2026, 09:53 PM
» Replies: 1
» Views: 288

 
  Significance regarding Timing Organization in Game of Chess Tournaments
Posted by: Jasonjes - 09-03-2024, 03:56 AM - Forum: General Discussion - Replies (1)



Training for Your Initial Chess Competition

Starting in your initial chessboard contest might be an exhilarating journey what challenges your competencies also tactics. Even if someone is a novice for chess & an experienced competitor, getting ready successfully could be important. Start by mastering fundamentals, grasping how each figure functions also practicing different starts. Consistent practice might be important; participating often, if at nearby clubs also online, assists one acquaint yourself to various plans and enhance someone’s skills. Watching games by chess pros can give knowledge about complex plans and choice-making processes. Thinking ahead might be important, permitting one towards predict someone’s competitor's strategies. Keeping composed under pressure, notably inside competitive environments, is crucial. Recalling it game of chess must constantly become engaging, having all competition giving a opportunity to learn and grow. Participating with the chess group, even through forums, groups, or activities, may enhance one’s adventure. Game of chess is a journey in continuous study & growth. Thus, prepare towards one’s competition, keep playing, keep understanding, and essentially, enjoy.

2



2 06b2e1d

Print this item

  [TOOL] Element Flag Encoder
Posted by: Scura - 09-01-2024, 02:25 PM - Forum: General Tools Releases - Replies (2)


Releasing a private tool written by me some times ago, when i was looking for the attribute system. It allow you to calculate the flag for the mob's element.

 

SCREENSHOT:

2



DOWNLOAD

2

 

VIRUSTOT:

2

 

This is not the final version ... i had one more advanced but idk where is gone ... btw this still do the job, so ... free release ?

 

 

Print this item

  [TOOL] Texture Coordinates
Posted by: Scura - 09-01-2024, 01:55 PM - Forum: General Tools Releases - Replies (4)


Just releasing a private tool developed by me, written some times ago, it allow you to get the coordinates usefull for when you working with XML to get the right position.

 

import tkinter as tk
from tkinter import filedialog, Button, Entry, Toplevel
from tkinterdnd2 import DND_FILES, TkinterDnD
from PIL import Image, ImageTk
import cv2

class ImageCropper:
def __init__(self, root):
self.root = root
self.root.title("Image Cropper")
self.root.geometry("800x600")

self.load_button = Button(root, text="Load Image", command=self.open_image_window)
self.load_button.pack(expand=True)

self.root.drop_target_register(DND_FILES)
self.root.dnd_bind('<<Drop>>', self.on_drop)

self.image_window = None

def open_image_window(self):
file_path = filedialog.askopenfilename(filetypes=[("Image files", "*.png;*.jpg;*.jpeg;*.bmp")])
if file_path:
self.create_image_window(file_path)

def on_drop(self, event):
file_paths = self.root.tk.splitlist(event.data)
if file_paths:
self.create_image_window(file_paths[0])

def create_image_window(self, file_path):
if self.image_window:
self.image_window.destroy()

self.image_window = Toplevel(self.root)
self.image_window.title("Crop Image")

self.canvas = tk.Canvas(self.image_window, cursor="cross", bg="gray")
self.canvas.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)

self.coord_frame = tk.Frame(self.image_window)
self.coord_frame.pack(side=tk.RIGHT, fill=tk.Y)

self.reset_button = Button(self.coord_frame, text="Reset Selection", command=self.reset_selection)
self.reset_button.pack(side=tk.TOP)

self.coord_entry = Entry(self.coord_frame, width=40)
self.coord_entry.pack(side=tk.TOP)

self.image = cv2.cvtColor(cv2.imread(file_path), cv2.COLOR_BGR2RGB)
self.original_image = self.image.copy()
self.scale = 1.0
self.update_display_image()

self.canvas.bind("<ButtonPress-1>", self.on_button_press)
self.canvas.bind("<B1-Motion>", self.on_drag)
self.canvas.bind("<ButtonRelease-1>", self.on_button_release)
self.canvas.bind("<MouseWheel>", self.zoom_image)
self.canvas.bind("<ButtonPress-2>", self.start_pan)
self.canvas.bind("<B2-Motion>", self.pan_image)

def update_display_image(self):
height, width, _ = self.image.shape
if width > 1920 or height > 1080:
scale_factor = min(1920/width, 1080/height)
width, height = int(width * scale_factor), int(height * scale_factor)
self.image = cv2.resize(self.image, (width, height))
self.original_image = self.image.copy()
self.scale = 1.0

self.canvas.config(width=width * self.scale, height=height * self.scale)
resized_image = cv2.resize(self.image, (int(width * self.scale), int(height * self.scale)))
self.tk_image = ImageTk.PhotoImage(image=Image.fromarray(resized_image))
self.canvas.create_image(0, 0, anchor="nw", image=self.tk_image)
self.canvas.config(scrollregion=self.canvas.bbox(tk.ALL))

def zoom_image(self, event):
if event.state == 0x04: # Ctrl key is pressed
if event.delta > 0:
self.scale *= 1.1
elif event.delta < 0:
self.scale *= 0.9
self.update_display_image()

def start_pan(self, event):
self.canvas.scan_mark(event.x, event.y)

def pan_image(self, event):
self.canvas.scan_dragto(event.x, event.y, gain=1)

def on_button_press(self, event):
if hasattr(self, 'rect_id'):
self.canvas.delete(self.rect_id)
self.start_x = self.canvas.canvasx(event.x)
self.start_y = self.canvas.canvasy(event.y)
self.rect_id = self.canvas.create_rectangle(self.start_x, self.start_y, self.start_x, self.start_y, outline="red")

def on_drag(self, event):
curX, curY = self.canvas.canvasx(event.x), self.canvas.canvasy(event.y)
self.canvas.coords(self.rect_id, self.start_x, self.start_y, curX, curY)

def on_button_release(self, event):
l, t, r, b = self.canvas.coords(self.rect_id)
self.coord_entry.delete(0, tk.END)
self.coord_entry.insert(0, f"l = {l/self.scale:.2f}, t = {t/self.scale:.2f}, r = {r/self.scale:.2f}, b = {b/self.scale:.2f}")

def reset_selection(self):
if hasattr(self, 'rect_id'):
self.canvas.delete(self.rect_id)
delattr(self, 'rect_id')

if __name__ == "__main__":
root = TkinterDnD.Tk()
app = ImageCropper(root)
root.mainloop()


Quote




#Requirements



Pillow==10.4.0

opencv-python==4.10.0.84

tkinterdnd2==0.1.0

numpy==2.1.0

 




2







Not sure which version is this .. may have some bugs, i just found it, and i thought about release. I wanted to add the zoom functionality but i never finish it. 

Print this item

  Chessboard Seminars and Intensive Study Sessions
Posted by: Jasonjes - 08-29-2024, 04:06 PM - Forum: General Discussion - No Replies

Welcome towards the exciting universe of the chessboard! Even if you are a newbie just beginning & a skilled player aiming to sharpen your abilities, there exists always something different to find out also explore in this classic game. Chess is not just a game; it's an exercise for the brain that boosts problem-resolution abilities, boosts retention, & improves critical thinking. Additionally, it’s an excellent approach to connect with others and test your abilities.

If you're new to the chessboard, start with learning the fundamentals. Comprehend how each figure moves also get familiar with the board. Do not worry if it appears challenging at first; each person has a starting point. There are many online guides and apps to assist you understand the fundamentals of things. The key to enhancing your game at the chessboard is playing as much as you can. Locate a nearby chess group or participate in virtual forums to play against diverse rivals. The more frequently you play, the better you'll comprehend diverse plans & improve your skills

Watching games played by chess masters is a great way to learn. Aim to comprehend why they make certain moves & the way they handle diverse circumstances. An essential competency in the game is strategizing in advance—predict your rival’s actions and organize multiple moves ahead to maintain the lead. Keep relaxed amid stress, especially in contests. Don’t forget to have fun; the chessboard designed to be fun, and each defeat is a chance to learn.

Become part of the dynamic chess group through clubs, online groups, or events to improve your adventure. Share your experiences, study from peers, and forge new connections. The chessboard is a path with countless possibilities to understand and develop. So grab your board, seek a rival, and enjoy the wonderful world of chess! Stay playing, keep learning, and essentially, keep enjoying!

2



2 78eabb5

Print this item

  Night Shadow Weapon
Posted by: ALEX - 08-18-2024, 03:50 PM - Forum: Help & Support - Replies (8)


Hi could someone help me with the solution to this problem?

Practically all the weapons of the nightshadow do not show the effect I checked both smc and itemall but there does not seem to be any error



2



2

Print this item

  Last Chaos Server Sale
Posted by: PvP LC - 08-09-2024, 12:22 AM - Forum: The Black Market (Buy, Sell, Trade) - Replies (3)


 

Hello everyone,

We’re excited to offer a top-notch Last Chaos server package that has everything you need to get started and run a stable, fully-featured server. This comprehensive package includes server and client source code, database, and website. Here’s what you get:


Updated Juno (Huge Arena)


Arena in mondshine


Prestige System


Revamped Save The Princess dungeon + Ranking/ Reward System


2 New characters complete armor/weapon/skill/effects/sounds/c2 + more all NEW


100% Cooldown Rate


Cooldown on Stun/Stone/Silence Skills


100% Upgrade Success Rate


New Player and Middle-Level Support


No Elemental System


Fully Revamped and Balanced ExClasses


Fully Functional Custom Titles


Maximum Upgrade Level: +30


Online Time Cash System


Custom World Bosses 100s Of Custom Npc


P2 system 2.0 all in working order.


Custom Affinity System


FPS Boost + Direct 9 


High-end Encryption tool/ Multilanguage/ Big Pet Editor etc. + more


Upgraded Cash transferring system ( Send Cash from item mall to Friends)


Upgraded Trade System ( Transfer Gold and Cash) through the trade UI. 


Right-Click to Remove Buffs


Domination Mode ( 1 vs 1 to 9v9 PVP ) 2 maps- Custom Capture Zone System ( True team work )


Stat Point Increase Items


+10 Stat Point Button


Perfectly Balanced PvP and PvE Systems


Custom Dratan Siege Map, Flat terrain no stairs , Spacious.


Organized Database with Custom Items and NPCs


Buff Lock System


Custom Maps


Master Stone System


Custom Auto Event system - System set to give out events every X amount of hours while engaging players.


Siege Ranking


Daily Siege system + custom Capture point system/ ranking/reward system 


Reform System


Reforge Hammer System


Event Reload System - Activate / deactivate Events on the fly with out server reboot.


Dratan PvP arena With Custom Cooldown ( set at 65% currently)


Boss death notification system


Updated Launcher ( runs on its own VPS , Stand alone launcher. Fast updates 100% uptime by AVE)


Server select System ( select to go to Live / test/ dev in one client)


Improved PvP and PvE Ranking System ( Auto Reward)


Updated client and server (update libs, c++17)


Custom Cube System and Ranking


Emoji System (Great for making chat fun)


Battle Pass System


Pictorial Book System


Relic System


For more information and to secure your package, add on Discord channel, GODMODE. Don’t miss out on this opportunity to own a fully customized Last Chaos server with premium features!

Feel free to reach out with any questions. We’re here to help you bring your gaming vision to life!

Best,  

GODMODE

 

Print this item

  Buy Source Bot and Perks
Posted by: Yukii - 07-31-2024, 05:37 AM - Forum: Development Showroom - Replies (1)


I want to add a bot for players to my source code. Can someone share the source code where there is a bot or show an example of the code?

I will be very grateful

 





I am ready to buy only the bot code as an example. Discord noname_php





Print this item

  error log when I click confirm
Posted by: ALEX - 07-24-2024, 10:25 AM - Forum: General Discussion - Replies (2)


Ciao comunità, qualcuno potrebbe dirmi perché quando apro la finestra delle opzioni e premo conferma viene visualizzato il registro degli errori?





2

 

 

Print this item

  craft tool
Posted by: rondo157 - 07-01-2024, 05:23 AM - Forum: Ep4 Support - Replies (1)


Hey community.

Can someone share craft tool, please? With export lod, ofc

 

thanks.

Print this item

  Looking Collaborator Last Chaos Server
Posted by: Tommy - 06-02-2024, 09:19 AM - Forum: Project Recruitment - Replies (1)


Hello,

I am looking for a collaborator to make a new server, if anyone is interested please get in touch: 

Discord: tommy_776

Print this item