Jump to content

Joseph

Members
  • Posts

    341
  • Joined

  • Last visited

7 Followers

Profile Information

  • Gender
    Male
  • Location
    MS

Recent Profile Visitors

8580 profile views

Joseph's Achievements

  1. @Ajaxx Me too. Thanks to rAthena! The nostalgic feeling whenever I visit this place.
  2. Hello people..

  3. - script louInvasion -1,{ OnKaguyaDead: killmonster "louyang","louInvasion::OnInvasionMonsters"; OnInit: monster "louyang",0,0,"Kaguya",1630,1,"louInvasion::OnKaguyaDead"; monster "louyang",0,0,"Disguise",1506,100,"louInvasion::OnInvasionMonsters"; end; OnInvasionMonsters: end; }
  4. Missing '{' while( getequiprefinerycnt(@part) < 10 && countitem( 512 ) ) { successrefitem @part; delitem 512,1; }
  5. http://rathena.org/board/topic/73478-requesting-card-seller-script/#entry152189
  6. This command may help you: downrefitem <equipment slot>{,<count>};
  7. I don't think there is a limitation.
  8. Simply add a new NPC see if it's working. If the first step is working, then go back and check the spelling of your custom script, also not to forget the file extension.
  9. Search for login_reward replace them with #login_reward
  10. This is what you're looking for: getstatus
  11. I think something like this should work: - script ZenyAccBased -1,{ OnPCLoginEvent: Zeny = #Zeny; end; OnPCLogoutEvent: #Zeny = Zeny; Zeny = 0; end; }
  12. /trunk/npc/instances/EndlessTower.txt" class="bbc_url" title="SVN" rel="external">/trunk/npc/instances/EndlessTower.txt
  13. OnPCDieEvent: getmapxy .@map$, .@x, .@y, 0; for(set .@i, 0; .@i < getarraysize(.pvpmap$); set .@i, .@i+1) { if(.@map$ == .pvpmap$[.@i]) { set .@str$, "@life_" + .pvpmap$[.@i]; setd (.@str$, getd(.@str$) + 1); if (getd(.@str$) > 1) { warp "SavePoint",0,0; } if ( #CASHPOINTS <= 0 ) end; set #CASHPOINTS,#CASHPOINTS-1; dispbottom "You have lose 1 Cash Point. Total is "+#CASHPOINTS+" Cash Points."; } } end; OnInit: setarray .pvpmap$[0],"guild_vs2","pvp_y_8-2","guild_vs1","guild_vs3","guild_vs4","guild_vs5","guild_vs1-2","1@orcs"; setarray .announcements$[0],"was killed by","was violated by","was owned by"; end; }
×
×
  • Create New...