After adding the pet interaction stuff from developement, then I get this error; ItemData does not contain a definition for BehaviourData and no extension method accepting a first argument of type could be found (are you missing a using directive or an assembly reference?)
doCommand('give_user_currency', '1:credits:1000');
doCommand('give_user_currency', '1:duckets:1000');
doCommand('reload_user_vip_rank', '1');
doCommand('alert_user', '1:Thank you for purchasing VIP. You have been given 1,000 credits & 1,000 duckets! You do not need to reload.');
function doCommand($header, $data = '')
{
$musData = $header . chr(1) . $data;
$sock = socket_create(AF_INET, SOCK_STREAM, getprotobyname('tcp'));
socket_connect($sock, '127.0.0.1', '30001');
socket_send($sock, $musData, strlen($musData), MSG_DONTROUTE);
socket_close($sock);
}
ALTER TABLE `user_badges`
ADD UNIQUE INDEX `user_id, badge_id` (`user_id`, `badge_id`);
Can you make a muscommand like giveitem ?
I have a CMS Rareshop and i need this command
Take your time bro, perfection doesn't come over night , we will be waiting for release 2 regardless of the timeframeYea no problem.
Just working on the logging atm, going to use log4net properly, next commit will be fucking huge as I have to get rid of the core/logging.cs & core/consolewriter/logging.cs files.
Release might be midnight now, but it'll be worth it regardless.
Ive already done this and I can say it so much easier because I just run the update settings mus so it implements it all straight away when I change it from my hk pageQuestion, would we prefer to see everything from PlusStaticGameSettings.cs in a server_settings table?
Cheers.
Make both work if it's possible, a setting at the config as example: When it's on > 1 it will take it from the server_settings, if it's not on 1 but on = 0 it will take it from PlusStaticGamesettings.Question, would we prefer to see everything from PlusStaticGameSettings.cs in a server_settings table?
Cheers.
Ive already done this and I can say it so much easier because I just run the update settings mus so it implements it all straight away when I change it from my hk page