Thread: Mys 1.3.4 Raffle Mod
View Single Post
  #6  
Old 01-29-2017, 11:58 AM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 65,400
Dinocanid is on a distinguished road
Default

I don't know how to make it automatically cycle through, but you can let the winner know that they won by putting this with the part of the script that picks the winner:
PHP Code:
$pm = new PrivateMessage(); // Send the winner a pm
    
$pm->setsender('AdminUsernameHere');
    
$pm->setrecipient($winner);
    
$pm->setmessage("You won the raffle! Congratulations! {$pool} CURRENCY has been added to your account.");
    
$pm->post(); 
__________________
Reply With Quote