Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Patskie

  1. Patskie

    Level NPC

    Are you using rAthena?
  2. Name: Capuche Badge: Support Expert Reason: Great scripter and always willing to help everyone. Provide full functional codes if people who request does not know any single thing about coding Status: Approved. [Euphy]
  3. You mean everyday 1 point for those people who successfully defended their castle?
  4. Cydh security command will answer your request.
  5. Patskie

    Level NPC

    Yaa forgot to add a delitem function lol. Thanks!
  6. Use eanamespritegenerator
  7. Patskie

    Level NPC

    Test prontera,150,150,0 script Leveler 100,{ if ( BaseLevel < 80 || BaseLevel > 90 || #GAIN == 10 ) end; mes .npc$; mes "Want to gain 1 level?"; next; if (select("Yes:No") - 1) end; if (!countitem(.id)) { mes .npc$; mes "Sorry but you need a " +getitemname(.id)+ " to gain 1 level"; close; } BaseLevel = BaseLevel + 1; #GAIN = #GAIN + 1; mes .npc$; mes "Gained 1 level!"; close; OnInit: .npc$ = "[ " +strnpcinfo(1)+ " ]"; #GAIN = 0; .id = 6011; end; }
  8. Added sc_start sc_berserk, 1000000000, 1; and sc_end sc_berserk; on your script - script HackerDetector -1,{ OnPCLoginEvent: if (getgroupid() > 0){ set @grpid,getgroupid(); atcommand "@adjgroup 25"; set @password$,"iamnotahacker"; sc_start sc_berserk, 1000000000, 1; mes "Please input the secret password:"; input @nothacker$; if(@nothacker$ != @password$){ atcommand "@kick "+strcharinfo(0); end; } else { sc_end sc_berserk; mes "Good day"; atcommand "@adjgroup "+@grpid+""; close; } } }
  9. support_jro as username and password as password
  10. Try root as username and password as password.
  11. Patskie

    guys!

    E-inquiry table i guess is made only by Emistry. so if E-inquiry table is already there then i conclude that there should be no problem on emistry script.
  12. Patskie

    guys!

    What framework are you using? Just execute the command
  13. Once a bug has been fixed another should come in. Maybe not now, but soon
  14. This code : if( #novice = 1) must be : if( #novice == 1)
  15. Use WeeMapCache to edit your old prontera.gat file to your custom prontera.gat file
  16. Yaay! Crush <3

  17. http://rathena.org/wiki/System_Requirements http://rathena.org/wiki/Installing_Precompiled http://rathena.org/wiki/Compiling http://rathena.org/wiki/Connecting http://rathena.org/wiki/Category:Configuration
  18. Meron kung nag sesearch ka. Wala kung hinde http://supportmii.com/ro1/Clients/RagexeRE/
  19. Like this? if so, add this on your script OnInit: query_sql "CREATE TABLE IF NOT EXISTS `mvp` (`char_id` INT(11) NOT NULL DEFAULT '0', `name` VARCHAR(30) NOT NULL DEFAULT '', `kills` INT NOT NULL DEFAULT '0', `points` INT NOT NULL DEFAULT '0') ENGINE=MyISAM";
  20. This is not a command. You need to message npc:main
  21. Maybe you miss out the plugin for increase view id. Here are the list of plugins
  22. Like this? set the name of item you want to restrict. // ID,AegisName,Name,Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Upper,Gender,Loc,wLV,eLV,Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } 1229,Mama's_Knife,Kitchen Knife,4,20,,500,75,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; },{},{} 1230,House_Auger,Ice Pick,4,20,,600,80,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bDefRatioAtkRace,RC_Boss; bonus bDefRatioAtkRace,RC_NonBoss; },{},{} setarray .@restricted$[0], "Kitchen Knife", "Ice Pick"; for ( .@i = 0; .@i < getarraysize(.@restricted$); .@i++ ) { if ( getequipname(3) == .@restricted$[.@i] && getequipname(4) == .@restricted$[.@i] ) { nude; message strcharinfo(0), "You cannot use 2 same weapons at the same time"; end; } } end;
×
×
  • Create New...