Jump to content

Poring King

Members
  • Posts

    1017
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Poring King

  1. I think this section is already answer by emistry also the idea
  2. This is not support section . Please be guided
  3. I think its commonly happening when you talking to a NPC . The Idle behavior on src . Is that what you mean ? That you can't walk or click to any place . If that what you mean its because of the idle . But it should be happen only on talking to NPC not while farming . Not really good in english
  4. @Songbird I read this on script_commands.tx . I guess i did not really understand this on txt file . But right now i understand this Thankyou!
  5. Try this i just made it for you not tested but it should work ! prontera,x,x,3 script Zeny Giver 99,{ mes .npc$; mes "Adventurer how can i help you ?"; switch(select("Get my daily Zeny","Nevermind")){ next; case 1: If (Zeny >= .MaxZeny) goto L_MaxZeny; Zeny += 5000000; mes .npc$; mes "Here is your daily zeny from adminstrator to support your financial needs"; close; case 2: mes .npc$; mes "Have a nice day !"; close; } L_MaxZeny: mes .npc$; mes "Sorry seems like you are almost full of zeny. You need to deposit your zeny to bank or change it to coins!"; close; OnInit: set .MaxZeny,20000000000; set .npc$,"[ Zeny Giver ]"; }
  6. Did you reload your battleconf ? . type ingame @reloadbattleconf
  7. I got my mvp ranking in my npc script collection . You can get idea how to get mvp records for your web page . To answer your question i think yes you can manage to get the account mvp killed using query
  8. I already try that thing thats why i post it here now because this is my first time encounter this.
  9. Hello how to fix this ? I just use the change sex npc and after that it gives me this error 4
  10. Hello is there a way to check if there is a special character in input ? I tried "If (compare())" condition . Can you give me idea how properly check if there is a special character with in input
  11. Check your Mapflag in your npc
  12. You are missing a resource files . So that mean you need to update your KRO You are missing client files like izlude_ac for renewal server setup
  13. Post here your server connectivity from your conf files let me see
  14. Can you please show us your conf on your server connection so we can guide you
  15. Use lang type 1 then america
  16. I guess you are using admin account . Admin account have all skill in his skill tree . If you want to fix it add the bmp needed and put it to your grf/texture/ai/item or if you don't want just update your skillinfoz at lua and remove the skill for admin
  17. Use correct sprite
  18. Read this OnInit: // When the server start do this below monster "ordeal_2-1",0,0,"Killer Boss",1949,5,"trum_v1::OnKill"; OnKill: // When the monster killed by player do this event if(#GoldPoint > 100000){ warp "prontera",155,184; } set .Gold_Points, rand(1,3); set #GoldPoint, #GoldPoint + .Gold_Points; dispbottom "Your Gold Points: "+#GoldPoint+" you get "+ .Gold_Points +" Gold Points"; monster "ordeal_2-1",0,0,"Golden Chocobo",1369,1,"trum_v1::OnKill"; // Summon monster on this map when player killed me //When the time it this Hour do this OnClock1432: OnClock1433: OnClock1000: OnClock3000: OnClock6000: OnClock9000: OnClock1200: OnClock1500: OnClock1800: OnClock2100: OnClock0000: killmonster "ordeal_2-1", "All"; monster "ordeal_2-1",0,0,"Golden Chocobo",1369,1000,"trum_v1::OnKill"; end; } I hope you get what i mean after you change type ingame : @reloadscript
  19. Or getmapxy( .@map$, .@x, .@y, BL_PC );
  20. Like what i said on support. If you are using pre-renewal . You only need to do is to open db/pre-re/mapcache.dat then if you are using renewal just open db/re/mapcache.datYou need to open the izlude map that you are using in your grf . example : izlude_ac.rsw and save it to your desktop . After you save it to your computer desktop copy it and paste it to your database on pre-re or re folder to update your existing mapcache.dat Then you need to restart your whole server to see the changes!
  21. As long as you are using a data.grf and rdata.grf you got a full RO sprite,texture ,item etc . You only need to do is to update your KRO upto date
  22. Well if you buy the gepard on real @Functor or real reseller you will get a licenses on it and you will get a 100% full support and updated files correct me if im wrong .
  23. If( Item 1 = refine 10 | item 2 = refine 10 | etc ){ mes "Do this"; if ( Zeny <= 1000000) goto ThisisMe; close; }else{ mes "Sorry you dont have item that i need"; } ThisisMe: mes " Here you go"; set ItemID,getequipinfo(L_Body); delitem itemID,1; getitem2 itemID,1,1,0,0,.@EnchantItemID; close; I hope you get the idea
  24. Like what i said from the title it happen that when i login to the map its only 3 players in my map but when i type /w it says the exact number of player's online . When i try to character select and use other char then it shows all the char connected in the server in prontera . How it comes this happen ? I just using 1 server . Is this client a problem ? to be short the problem sometimes i feel like i connecting to a different map-server . but the exact player connected in map is same See the difference
  25. Here is my weemapcache WeeMapCache.exe
×
×
  • Create New...