• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

How to make "only read" players rep++

Bondy

New Member
Joined
Mar 28, 2009
Messages
282
Reaction score
1
I would like to make all the existing players in my ot as "only read" so they dont loose anything when they die and they just stay always as when i clicked "only read" (this is because i wanna make a huge war and give lvls to them but i dont want that to rlly happen)

so 1. how do i make em only read?
2. how do i unmake them only read?

thanks!

ps: i use mysql
 
Last edited:
Execute a SQL query..

Read-only players:
PHP:
UPDATE `players` SET `save` = 0;

Undo:
PHP:
UPDATE `players` SET `save` = 1;
 
Back
Top