Code:
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Script Name: Orion Features
// Version: 1.0.0
// Authors:
// - Jhobean (https://github.com/Jhobean)
// - EXTREME (https://github.com/GODEXTREME)
//
// Creation Date: June 8, 2024
//
// Description:
// This script should be used if you want to force your players to use Orion Client and to control the features they can use.
//
// Usage Instructions:
// 1. Go to sphere.ini and add anywhere: PACKET191=F_ORION_PACKET_RECEIVE.
// 2. Go to sphere.ini and add in EVENTSPLAYER: E_ORION_FEATURES
// 2. Set on ORION.VERSION the mininum Orion Version allowed to play on your server.
// 3. Go to Orion Launcher, select the tab "For server administrators".
// 3.1 Under "Orion features" tab, select all features will be allowed (check) and copy the last part of the code on the text box
// under Sphere tab, and set on ORION.FEATURES.
// 3.2 Under "OA Features" tab, select all all features will be allowed (check) and copy the last 4 parts of the code on the text
// box under Sphere tab, and set on ORION.OAFEATURES.
//
// Version History:
// 1.0.0: [06/08/2024] - Initial release.
//
// Additional Notes:
// The packet B0BF (191) is used for many functions. If you have any other function that uses this packet, you
// must copy the code under [FUNCTION F_ORION_PACKET_RECEIVE] and place into your original packet B0BF
// handle function.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
[DEFNAME ORION]
ORION.VERSION 10330 // Minimum Orion Client Version
ORION.FEATURES D0FF963CF5 // Allowed Orion Features
ORION.OAFEATURES D0FFFFFFFF D0EBFF8677 D0FFFFFE7F D0FFBFEFFF // Allowed Orion Assistant Features
ORION.DISCONNECT 1 // 1 - Disconnect if player not using Orion
ORION.DISCONNECT.TIME 5 // Seconds to disconnect players without proper Orion version
[EVENTS E_ORION_FEATURES]
ON=@LOGIN
F_ORION_ONLOGIN
[FUNCTION F_ORION_ONLOGIN]
CTAG0.ORIONCLIENT
SENDPACKET B0BF W0007 W0FACE W00034 // Ask for Orion Client Version
SENDPACKET B0BF W000B W0FACE W00032 <DEF.ORION.FEATURES> // Send Allowed Orion Features
SENDPACKET B0BF W0017 W0FACE W08001 <DEF.ORION.OAFEATURES> // Send Allowed Orion Assistant Features
IF (<ACCOUNT.PLEVEL> > 3)
ELIF (!STRCMP(<ACCOUNT>,youraccountname))
ELSEIF (<dDEF.ORION.DISCONNECT>)
TIMERF <dDEF.ORION.DISCONNECT.TIME>,F_DISCONNECT_BADCLIENT
ENDIF
RETURN 0
[FUNCTION F_ORION_PACKET_RECEIVE]
REF1 <LOCAL.CHAR>
IF (<dLOCAL.2> == 11)
IF (<dLOCAL.7><dLOCAL.8><dLOCAL.9><dLOCAL.10> >= <dDEF.ORION.VERSION>)
REF1.CTAG0.ORIONCLIENT 1
ENDIF
ENDIF
RETURN 0
[FUNCTION F_DISCONNECT_BADCLIENT]
IF (!<CTAG0.ORIONCLIENT>)
SYSMESSAGEUA 089 0 0 eng This server requires the latest ORION version
SYSMESSAGEUA 089 0 0 eng You will be disconnected...
SERV.LOG DISCONNECTION OF <ACCOUNT> <NAME> USING OLDER ORION VERSION
DISCONNECT_NOW
ENDIF
RETURN 0
[FUNCTION DISCONNECT_NOW]
SERV.NEWITEM I_DISCONNECT_NOW
NEW.EQUIP
RETURN 0
[ITEMDEF I_DISCONNECT_NOW]
ID=I_MEMORY
TYPE=T_EQ_SCRIPT
ON=@CREATE
TIMER=1
ON=@EQUIP
TIMER=1
ON=@TIMER
CONT.UPDATE
CONT.DISCONNECT
REMOVE
RETURN 1