Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/statpoint.txt
  2. Index: char/char.c
  3. if( Weight >= 400000 ){ mes "Reduce ur weight."; close; }
  4. 3193
  5. well...prevent bot should be done by yourself... script arent really able to help you block these bot.... buy gameguard to protect ur own server from bot.
  6. Emistry

    Hi to all

    this is a simple example that i made a very long time ago... i think it should be able to fit what you want... http://www.eathena.ws/board/index.php?act=Attach&type=post&id=9463
  7. you can try something this like...but still it is not a good way to do so..since player's name might come with those word without any intention to act as "GM" OnPCLoginEvent: if( compare( strcharinfo(0),"[GM]" ) ){ mes "Sorry you cant add any form of '[GM]' in your name."; sleep2 5000; atcommand "@kick "+strcharinfo(0); } end;
  8. why need to use security code....?
  9. 3191
  10. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf can_trade: false
  11. 3187
  12. 3184
  13. Emistry

    Hi to all

    show your edited script....
  14. 3182
  15. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/skill.conf // Dancing Weapon Switch // On official server, a fix is in place that prevents the switching of weapons to cancel songs. // Default: yes dancing_weaponswitch_fix: yes guild capacity issue..i believe has been answered several time..try use search engine...
  16. 3180
  17. Emistry

    Hi to all

    see carefully.... =='' you using NPC1:OnWhatEverLabel and i using.... NPC1::OnWhatEverLabel
  18. Emistry

    Hi to all

    Case 1: donpcevent "NPC1::OnWhatEverLabel"; break; Case 2: donpcevent "NPC2::OnWhatEverLabel"; break;
  19. 3178
  20. 3176
  21. remove the renewal mechanic then,..... https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/config/renewal.h
  22. 3174
  23. 3172
  24. And what's ur Error ? show it....
  25. Emistry

    Hi to all

    i mean link them together like this... put a npc label in both NPC.... - script NPC1 -1,{ OnWhatEverLabel: .........blablabla............. } - script NPC2 -1,{ OnWhatEverLabel: .........blablabla............. } then the NPC that call for both NPC prontera,155,181,5 script MAINNPC 123,{ switch( select("Call NPC 1:Call NPC 2") ){ Case 1: donpcevent "NPC1::OnWhatEverLabel"; break; Case 2: donpcevent "NPC2::OnWhatEverLabel"; break; } close; }
×
×
  • Create New...