• 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!

Point of open source?

unrivaledneo

Pokemon Master
Joined
Nov 16, 2009
Messages
56
Reaction score
8
Been browsing around for a decent build to base my server off and was curious is there any point into messing around with an open source server, seems everything I want to do is lua based?

one of the main reasons is because im testing out two different servers and some stuff works on one and not the other, but they are not open source so cant tell if its the server itself or maybe i messed up.
 
It depends on what you want to achieve really.
There are some things you cant do without editing the sources
 
Depends which distro your using in cryingdamson 0.3.6 (8.60) V8.2 these are all the lua functions that deal with channels.
Taken directly from luascript.cpp
Code:
doAddStatement(name/guid[, channelId[, reason[, comment[, admin[, statement]]]]]])
doRemoveStatements(name/guid[, channelId])
doCreatureExecuteTalkAction(cid, text[, ignoreAccess[, channelId]])
doPlayerSendChannelMessage(cid, author, message, SpeakClasses, channel)
doPlayerSendToChannel(cid, targetId, SpeakClasses, message, channel[, time])
doRemoveStatements(name/guid[, channelId])

getStatementsCount(name/guid[, channelId])
getChannelUsers(channelId)

onPlayerCloseChannel(cid)
onSay(cid, words, param, channel)
 
Back
Top