If I remember correctly: The BELOW goes into register.php
// WELCOME PACKAGE $i = USERID - 1 = ITEMID - 3 = QTY //
item_add($i, 1, 3);
item_add($i, 2, 3);
item_add($i, 3, 3);
$welcome_subject = "Welcome to ".$set['game_name']."";
$welcome_message = "Welcome message gets inserted here...";
$db->query("INSERT INTO `mail` VALUES (NULL, 0, 1, $i, " . time() . ", '$welcome_subject', '$welcome_message')");
$db->query("UPDATE `users` SET `new_mail` = `new_mail` + 1 WHERE `userid` = $i");
Would that not be correct to send the new player a message and add multiple items?
Not used Mccodes in a long time! Found a few files stored away on a USB drive.