• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[7.4, 7.8, 7.92, 8.0] Sabrehaven.com based on Nostalrius 7.7 fork

Hello i want to test in 7.4 but can't log ,without errors in console.I tested in 8.0 all is okei.Any help please.

1705435703467.png
 

Attachments

Last edited:
How does it work and for what purpose?
just to create a fake player?
1705883560643.png
 
When hosting Tibianus 7.4 OTS I was spoofing players a bit. Forgive me :D The thing what this does is if a special character login named "King Tibianus" it little by little logins players from database which are marked as fake_player = 1
 
This otclient works with 8.0 & the wings/auras bug are fixed.
Im using this client... added aura/wings on the server everything is running well... but when i log in-game and open my outfit window and try to add wings and shaders it only appears on the outfit windows but when i press ok nothing happens... its not shown... help?
 
Im using this client... added aura/wings on the server everything is running well... but when i log in-game and open my outfit window and try to add wings and shaders it only appears on the outfit windows but when i press ok nothing happens... its not shown... help?
In your server, the shader is not being enabled correctly, and it requires changes in your players.cpp.

before.
C++:
else if (IS_IN_KEYRANGE(key, MOUNTS_RANGE) || IS_IN_KEYRANGE(key, WINGS_RANGE) || IS_IN_KEYRANGE(key, AURAS_RANGE)) {
// do nothing
}

change to.
C++:
else if (IS_IN_KEYRANGE(key, MOUNTS_RANGE) || IS_IN_KEYRANGE(key, WINGS_RANGE) || IS_IN_KEYRANGE(key, AURAS_RANGE)|| IS_IN_KEYRANGE(key, SHADERS_RANGE)) {
// do nothing
}
 
In your server, the shader is not being enabled correctly, and it requires changes in your players.cpp.

before.
C++:
else if (IS_IN_KEYRANGE(key, MOUNTS_RANGE) || IS_IN_KEYRANGE(key, WINGS_RANGE) || IS_IN_KEYRANGE(key, AURAS_RANGE)) {
// do nothing
}

change to.
C++:
else if (IS_IN_KEYRANGE(key, MOUNTS_RANGE) || IS_IN_KEYRANGE(key, WINGS_RANGE) || IS_IN_KEYRANGE(key, AURAS_RANGE)|| IS_IN_KEYRANGE(key, SHADERS_RANGE)) {
// do nothing
}
Edited and recompile... not working
 
Does anyone know how to add more items to this list to highlight the item name in cores?
1707405322564.png1707405400817.png
 
Does anyone know how to add more items to this list to highlight the item name in cores?
View attachment 81948View attachment 81949

open items.srv
in item golden legs put in line atributes
,Cost= number
( 1000 is 629AC4 ) = BLUE
( 15000 is F3E84A ) = YELLOW
( 50000 is BA90C7 ) = PURPLE

if (item->getCost() >= 50000) {
os << "[#BA90C7:" << item->getNameDescription() << "]";
}
else if (item->getCost() >= 15000) {
os << "[#F3E84A:" << item->getNameDescription() << "]";
}
else if (item->getCost() >= 1000) {
os << "[#629AC4:" << item->getNameDescription() << "]";
}
 
Last edited:
It is possible to change npcs to xml? If not, where can I find the source of functions that npc using?
 
Sabrehaven 7.4 Issues.
When I attempt to open the otcv8 client that came with sabrehaven 7.4 I get this error: bild_2024-02-22_083102189.png

Has anyone else had that Issue?
-Sidenote- Whenever I try to use another normal client it simply says that only client 7.92 is allowed (but even tho I tested to add vanilla 7.92 files to a clean otcv8 that is not accepted either)

And ontop of that I also get znote errors in the log:
bild_2024-02-22_083338041.png
The znote sql that comes with the server doesn't work to add to PhPMA for me but then again I'm thinking about using another homepage for the server anyways so to that error my question is, does anyone know how to remove whatever that attempts to trigger the znote sql/query?
-Sidenote- I've tested to add them queries that is in the post and it didn't help.

/Thanks in advance, Erna.
 
Last edited:
Hi!
I have been adding mounts, outfit. but I can't put the wings and auras on the player. shaders work correctly.
no wings no auras.png
 
Back
Top