Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SHOW GRANTS FOR 'USER'@'HOST';
mysql> SHOW GRANTS FOR dayz@zombie.local;
+----------------------------------------------------------------------------------------------------------------+
| Grants for dayz@zombie.local |
+----------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'dayz'@'zombie.local' IDENTIFIED BY PASSWORD 'XXXXXXXXXXX' |
| GRANT ALL PRIVILEGES ON `reality_1`.* TO 'dayz'@'zombie.local' |
+----------------------------------------------------------------------------------------------------------------+
insert ignore into spawns (otype, pos, uuid) values ('UH1H_DZ', '[310,[6365.74,7795.35,-0.0487671]]', '989539');
insert ignore into spawns (otype, pos, uuid) values ('UH1H_DZ', '[14,[13308.510780334473, 3227.0215606689453, 0]]', '625402');
insert ignore into spawns (otype, pos, uuid) values ('UH1H_DZ', '[265,[7695.035457611084, 3991.2055587768555, 0]]', '339267');
insert ignore into spawns (otype, pos, uuid) values ('UH1H_DZ', '[22,[12035, 12368.4, -0.0491638]]', '6791014');
update spawns set pos = '[153,[11251.7728805542, 4274.1740798950195, 0]]' where uuid = 35;
update spawns set pos = '[133,[4211.878776550293, 10735.167846679688, 0]]' where uuid = 36;
update spawns set pos = '[52,[6879.14, 11439.9, -0.0406189]]' where uuid = 37;
update spawns set pos = '[359,[6377.88, 2757.89, -0.0487671]]' where uuid = 39;
drop procedure if exists `proc_loginSurvivor`;
create procedure `proc_loginSurvivor`(in `p_uniqueId` varchar(128), in `p_playerName` varchar(128))begin
update profile set name = p_playerName where unique_id = p_uniqueId; --
update survivor
set state = '["","aidlpercmstpsnonwnondnon_player_idlesteady04",36]'
where
unique_id = p_uniqueId and is_dead = 0 and state rlike '.*_(driver|pilot)'; --
select
id, inventory, backpack, floor(time_to_sec(timediff(now(), start_time)) / 60), model, last_ate, last_drank
from survivor
where
survivor.unique_id = p_uniqueId
and is_dead = 0; --
end;
[Err] 1146 - Table 'dayz.spawns' doesn't exist