Old RedemRP

  • Be sure you have RedEM and RedEM:RP Installed if not --> RedEM --> RedEM:RP

  • Run this SQL command on your database

ALTER TABLE `users` ADD COLUMN `allowedcharactercount` INT(11) NULL DEFAULT '1';
ALTER TABLE `users` ADD COLUMN `ambient` JSON NOT NULL DEFAULT '{"ambiyansyeri":1,"campfire":1,"tent":1}';

if you get Error Code: 1101. BLOB, TEXT, GEOMETRY or JSON column 'ambient' can't have a default value this error, use this sql command

ALTER TABLE `users` ADD COLUMN `ambient` VARCHAR(100) NULL DEFAULT '{"ambiyansyeri":1,"campfire":1,"tent":1}'

Last updated