Advertisement
thespeedy

mds.quest

Feb 12th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. quest mds begin
  2.     state start begin
  3.         when login begin
  4.             loop_timer("ig_coins", 10)
  5.             pc.setqf("ig_coins_time", get_time() + 10)
  6.         end
  7.    
  8.         when ig_coins.timer begin
  9.             if pc.getqf("ig_coins_time") <= get_time() then
  10.                 local coins = mysql_query("SELECT coins from account.account WHERE id="..pc.get_account_id().." LIMIT 1;")[1][1]
  11.                 cmdchat("Mds "..coins)
  12.             end
  13.         end
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement