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

Search results

  1. baziol1235

    Lua MySQL creating new record, or updating if it already exists

    Hi guys, i've got some problem with this. I've found this solution : IF EXISTS (SELECT name FROM offline_training WHERE name='blabla') UPDATE offline_training SET timeLeft=8 WHERE name='blabla' ELSE INSERT INTO offline_training (name) VALUES("blabla") It seems to be simple but it's not. I...
  2. baziol1235

    Compiling [8.54] TFS 0.3.6(Crying Damson) Trying to add more than 255 magic effects

    Hi Guys ! i've read a lot of threads on otland and others forums, but still i can't add more than 255 magic effects. I was trying to change uint8 to uint16 in TFS source code: void ProtocolGame::AddMagicEffect(NetworkMessage_ptr msg,const Position& pos, uint16_t type) { msg->AddByte(0x83)...
Back
Top Bottom