Farklı bir forumda dolanırken denk geldim sizlerle paylaşmak istedim arkadaşlar.
Game-Db Source/Server/common/service.h
gir ve müsait bir yere ekle;
Game-Db Source/Server/game/src/entity_view.cpp
gir ve include'lerin olduğu bölüme ekle;
ardından arat;
altına ekle;
İyi forumlar.
OX Takipçileri Gösterme Sistemi
Metin2 özel sunucularında geliştirilen C++ tabanlı sistemlerden biri olan OX takipçileri gizleme özelliği, oyuncuların kendi aralarındaki etkileşimleri kontrol altına almayı hedefler. Bu sistem, genellikle PvP odaklı sunucularda tercih edilir. Özellikle Metin2 PvP sistemleri üzerinde çalışan geliştiriciler, oyuncu deneyimini daha özel ve dengeli hale getirmek amacıyla bu gibi özellikler eklerler.
OX Sistem Nedir?
OX sistemi, Metin2 özel sunucularında belirli bir etkinlik veya oyun modülüdür. Oyuncular bu sistemde belirli görevleri yerine getirerek ödüller kazanabilirler. Ancak bazı durumlarda, oyuncuların birbirlerini takip edebilmesi istenmeyen bir durum olabilir. Bu sebeple OX takipçileri gizleme sistemi devreye girer. Bu sayede oyuncular kendi gizlilik alanlarını koruyabilirken, diğer oyuncuların takip edip etmediğini görememeleri sağlanır.
C++ Kaynak Kodları ile Uygulama
Bu sistemin geliştirilmesinde C++ dilinde yazılmış source edit işlemleri yapılır. Game server programming kapsamında, client src ve server src üzerinde değişiklikler yapılarak bu özellik aktif hale getirilir. Geliştiriciler, db core ile de veritabanı tarafında gerekli güncellemeleri yapar. Bu sayede oyuncu verileri güvenli ve kontrollü bir şekilde işlenir.
Python GUI ve Uiscript Entegrasyonu
Bazı durumlarda Python tabanlı sistemler de entegre edilir. Py GUI veya uiscript kullanılarak arayüz tarafında da kullanıcı dostu çözümler geliştirilir. Bu sayede OX takip sistemi hem teknik hem de kullanıcı deneyimi açısından optimize edilir. Py Root ve Martysama gibi araçlar da bu süreçte destek sağlayabilir.
Gizlilik ve Güvenlik
Oyuncuların takip edilme durumunu gizlemek, güvenlik açısından da önemlidir. Özellikle PvP sistemlerinde, oyuncuların birbirlerini takip ederek hareketlerini analiz etmeleri oyun içi avantaj sağlayabilir. Bu sistemin devreye alınması, adil bir oyun ortamı sağlamak açısından oldukça faydalıdır.
Sonuç
Metin2 özel sunucularında OX takipçileri gizleme sistemi, gelişmiş C++ ve Python tabanlı geliştirme araçlarıyla kolayca entegre edilebilir. Bu sistem, hem oyuncuların gizliliğini korur hem de oyun içi dengeyi artırır. Metin2Dev ve benzeri topluluklarda bu gibi sistemler üzerine yoğunlaşan geliştiriciler, sunuculara özgün ve dengeli çözümler sunar.
Hiding OX Players
One of the C++ based systems developed for Metin2 private servers is the OX followers hiding feature, which aims to control player-to-player interactions. This system is often preferred on PvP oriented servers. In particular, developers working on Metin2 PvP systems add such features to make the player experience more exclusive and balanced.
What is OX System?
OX system is an activity or game module in Metin2 private servers. Players can earn rewards by completing certain tasks within this system. However, sometimes it may not be desired for players to track each other. For that reason, the OX followers hiding system comes into play. This way, players can protect their own privacy while ensuring that others cannot see if they are being followed.
Implementation with C++ Source Codes
In developing this system, source edit operations are performed in C++. Within the scope of game server programming, changes are made to client src and server src to activate this feature. Developers also update the database side through db core. This ensures that player data is processed securely and under control.
Python GUI and Uiscript Integration
In some cases, Python-based systems are also integrated. User-friendly solutions are developed using Py GUI or uiscript on the interface side. This optimizes the OX tracking system both technically and in terms of user experience. Tools like Py Root and Martysama can provide support during this process.
Privacy and Security
Hiding the tracking status of players is also important for security purposes. Especially in PvP systems, players might analyze movements of each other by following them, gaining in-game advantages. Activating this system is highly beneficial in creating a fair gaming environment.
Conclusion
The OX followers hiding system in Metin2 private servers can easily be integrated using advanced C++ and Python-based development tools. This system protects player privacy and increases in-game balance. Developers focusing on such systems in communities like Metin2Dev offer unique and balanced solutions to servers.
Game-Db Source/Server/common/service.h
gir ve müsait bir yere ekle;
Kod:
#define HIDDEN_OX
Game-Db Source/Server/game/src/entity_view.cpp
gir ve include'lerin olduğu bölüme ekle;
Kod:
#include "OXEvent.h"
ardından arat;
Kod:
void operator () (LPENTITY ent) { if (!ent->IsType(ENTITY_OBJECT)) if (DISTANCE_APPROX(ent->GetX() - m_me->GetX(), ent->GetY() - m_me->GetY()) > dwViewRange) return;
altına ekle;
Kod:
#ifdef HIDDEN_OX if (ent->IsType(ENTITY_CHARACTER) && m_me->IsType(ENTITY_CHARACTER)) { const LPCHARACTER chMe = static_cast<LPCHARACTER>(m_me); const LPCHARACTER chEnt = static_cast<LPCHARACTER>(ent); if (chMe->GetMapIndex() == OXEVENT_MAP_INDEX && !chMe->IsGM() && !chEnt->IsGM()) return; } #endif
İyi forumlar.
OX Takipçileri Gösterme Sistemi
Metin2 özel sunucularında geliştirilen C++ tabanlı sistemlerden biri olan OX takipçileri gizleme özelliği, oyuncuların kendi aralarındaki etkileşimleri kontrol altına almayı hedefler. Bu sistem, genellikle PvP odaklı sunucularda tercih edilir. Özellikle Metin2 PvP sistemleri üzerinde çalışan geliştiriciler, oyuncu deneyimini daha özel ve dengeli hale getirmek amacıyla bu gibi özellikler eklerler.
OX Sistem Nedir?
OX sistemi, Metin2 özel sunucularında belirli bir etkinlik veya oyun modülüdür. Oyuncular bu sistemde belirli görevleri yerine getirerek ödüller kazanabilirler. Ancak bazı durumlarda, oyuncuların birbirlerini takip edebilmesi istenmeyen bir durum olabilir. Bu sebeple OX takipçileri gizleme sistemi devreye girer. Bu sayede oyuncular kendi gizlilik alanlarını koruyabilirken, diğer oyuncuların takip edip etmediğini görememeleri sağlanır.
C++ Kaynak Kodları ile Uygulama
Bu sistemin geliştirilmesinde C++ dilinde yazılmış source edit işlemleri yapılır. Game server programming kapsamında, client src ve server src üzerinde değişiklikler yapılarak bu özellik aktif hale getirilir. Geliştiriciler, db core ile de veritabanı tarafında gerekli güncellemeleri yapar. Bu sayede oyuncu verileri güvenli ve kontrollü bir şekilde işlenir.
Python GUI ve Uiscript Entegrasyonu
Bazı durumlarda Python tabanlı sistemler de entegre edilir. Py GUI veya uiscript kullanılarak arayüz tarafında da kullanıcı dostu çözümler geliştirilir. Bu sayede OX takip sistemi hem teknik hem de kullanıcı deneyimi açısından optimize edilir. Py Root ve Martysama gibi araçlar da bu süreçte destek sağlayabilir.
Gizlilik ve Güvenlik
Oyuncuların takip edilme durumunu gizlemek, güvenlik açısından da önemlidir. Özellikle PvP sistemlerinde, oyuncuların birbirlerini takip ederek hareketlerini analiz etmeleri oyun içi avantaj sağlayabilir. Bu sistemin devreye alınması, adil bir oyun ortamı sağlamak açısından oldukça faydalıdır.
Sonuç
Metin2 özel sunucularında OX takipçileri gizleme sistemi, gelişmiş C++ ve Python tabanlı geliştirme araçlarıyla kolayca entegre edilebilir. Bu sistem, hem oyuncuların gizliliğini korur hem de oyun içi dengeyi artırır. Metin2Dev ve benzeri topluluklarda bu gibi sistemler üzerine yoğunlaşan geliştiriciler, sunuculara özgün ve dengeli çözümler sunar.
Hiding OX Players
One of the C++ based systems developed for Metin2 private servers is the OX followers hiding feature, which aims to control player-to-player interactions. This system is often preferred on PvP oriented servers. In particular, developers working on Metin2 PvP systems add such features to make the player experience more exclusive and balanced.
What is OX System?
OX system is an activity or game module in Metin2 private servers. Players can earn rewards by completing certain tasks within this system. However, sometimes it may not be desired for players to track each other. For that reason, the OX followers hiding system comes into play. This way, players can protect their own privacy while ensuring that others cannot see if they are being followed.
Implementation with C++ Source Codes
In developing this system, source edit operations are performed in C++. Within the scope of game server programming, changes are made to client src and server src to activate this feature. Developers also update the database side through db core. This ensures that player data is processed securely and under control.
Python GUI and Uiscript Integration
In some cases, Python-based systems are also integrated. User-friendly solutions are developed using Py GUI or uiscript on the interface side. This optimizes the OX tracking system both technically and in terms of user experience. Tools like Py Root and Martysama can provide support during this process.
Privacy and Security
Hiding the tracking status of players is also important for security purposes. Especially in PvP systems, players might analyze movements of each other by following them, gaining in-game advantages. Activating this system is highly beneficial in creating a fair gaming environment.
Conclusion
The OX followers hiding system in Metin2 private servers can easily be integrated using advanced C++ and Python-based development tools. This system protects player privacy and increases in-game balance. Developers focusing on such systems in communities like Metin2Dev offer unique and balanced solutions to servers.
