Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #ifdef __REBIRTH
  2. case II_SYS_SYS_SCR_REBIRTH_ONCE:
  3. {
  4. if(((CUser*)this)->m_iRebirth >= 10)
  5. {
  6. ((CUser*)this)->AddText("You have already max rebirths!");
  7. nResult = 1;
  8. }
  9. else if(((CUser*)this)->m_nLevel >= 149 && ((CUser*)this)->IsLegendHero())
  10. {
  11. ((CUser*)this)->InitLevelRebirth( ((CUser*)this)->m_nJob-16,60);
  12. }
  13. else
  14. {
  15. ((CUser*)this)->AddText("You do not have the right level for a Rebirth!");
  16. nResult = 1;
  17. }
  18. }
  19. break;
  20. #endif//__REBIRTH
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement