Guest User

Untitled

a guest
Aug 2nd, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. call_block = 30; // call block for the rates(30 seconds)
  2.  
  3. if(free_call_days_left > 0) // to check if the free calls are still available or not
  4. {
  5. if(same_operator(number)) // to check if you're calling the same operator or not(U Mobile to U Mobile)
  6. {
  7. if(time_hr >= 0 && time_hr < 19) // 12a.m to 6.59p.m
  8. {
  9. if(daily_free_talktime <= 60) // Haven't reach 60 minutes of daily free talk time, the rate is foc
  10. {
  11. call_rate = 0; // foc until 60 minutes has been used up for each day
  12. }
  13. else // reached 60 minutes of daily free talk time, so normal rates will apply
  14. {
  15. call_rate = 0.09; // 9 cent per 30 seconds
  16. }
  17. }
  18. else // 7p.m to 11.59a.m
  19. {
  20. call_rate = 0.03; // special promotional rate: 3 cent per 30 seconds
  21. }
  22. }
  23. else // calling different operator, so normal rates apply
  24. {
  25. call_rate = 0.09;
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment