Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/re/statpoint.txt
  2. if( Weight >= 400000 ){ mes "Reduce ur weight."; close; }
  3. 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.
  4. 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
  5. 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;
  6. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf can_trade: false
  7. Emistry

    Hi to all

    show your edited script....
  8. 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...
  9. Emistry

    Hi to all

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

    Hi to all

    Case 1: donpcevent "NPC1::OnWhatEverLabel"; break; Case 2: donpcevent "NPC2::OnWhatEverLabel"; break;
  11. remove the renewal mechanic then,..... https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/config/renewal.h
  12. And what's ur Error ? show it....
  13. 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...