Re: Database up and running
as of tonight, move() doesn't seem to want to set a direction, nor deduct fuel.
select current_tic from current_stats;
3084
select fuel_reserve from my_player
114076
select move(199,5000,174,null,null);
t
[no errors]
[wait a minute or two]
select current_tic from current_stats;
3087
select fuel_reserve from my_player
114076
select id,speed,direction from my_ships where id = 199
199, 5000, 0
---
directly updating seems to not work at all.
update my_ships set speed=4000, direction=174 where id=199;
[no response]
select id,speed,direction from my_ships where id = 199
199, 5000, 174
[after a minute or so]
select id,speed,direction from my_ships where id = 199
199, 5000, 0
as of tonight, move() doesn't seem to want to set a direction, nor deduct fuel.
select current_tic from current_stats;
3084
select fuel_reserve from my_player
114076
select move(199,5000,174,null,null);
t
[no errors]
[wait a minute or two]
select current_tic from current_stats;
3087
select fuel_reserve from my_player
114076
select id,speed,direction from my_ships where id = 199
199, 5000, 0
---
directly updating seems to not work at all.
update my_ships set speed=4000, direction=174 where id=199;
[no response]
select id,speed,direction from my_ships where id = 199
199, 5000, 174
[after a minute or so]
select id,speed,direction from my_ships where id = 199
199, 5000, 0
Comment