Advertisement
Guest User

Notes

a guest
Jun 7th, 2013
2,334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. Installation Notes :-
  2.  
  3. 1: Query this SQL statements in your database:
  4. <!------------------------------------------------------------!>
  5. create table pvpladder (
  6. char_id int(11) not null default '0' primary key,
  7. name varchar(30) not null default '',
  8. streaks smallint(6) unsigned not null default '0',
  9. kills smallint(6) unsigned not null default '0',
  10. deaths smallint(6) unsigned not null default '0',
  11. streaktime datetime
  12. ) engine = myisam;
  13.  
  14. create table ownladder (
  15. guild_id int(11) not null default '0' primary key,
  16. name varchar(24) not null default '',
  17. currentown smallint(6) unsigned not null default '0',
  18. highestown smallint(6) unsigned not null default '0',
  19. owntime datetime
  20. ) engine = myisam;
  21. <!------------------------------------------------------------!>
  22.  
  23. 2: Install "dota_pvpladder_2.9.txt" file in your server.
  24. 3: Copy "dotasoundeffect_2" (of NPCScripts folder) Soundeffect to the client side. "data\wav" folder. (If you need, not compulsory.
  25. 4: For setting purpose refer this topic
  26. http://www.eathena.ws/board/index.php?showtopic=177918
  27. 5: Save and exit.
  28. 6: Best Player ranking should be working.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement