Jump to content

Serken

Members
  • Posts

    45
  • Joined

  • Last visited

Everything posted by Serken

  1. Better use ur RO folder of online server, otherwise u can copy your online grfs ( with clientinfo edited with ur local IP) and system to clean KRO folder. the rAthena folder better copy all online folder to ur PC and change the IP's of map_athena.conf etc to ur local IP (127.0.0.1) The last answer i dont understand correctly, but no matter when u update ur client and server side, if u put the IP's correctly will run without problems.
  2. For this i think u need to modify source ? but u can active PK mode and set a punishment if u kill someone of ur group (something like friendly fire) with OnPCKillEvent
  3. You can do it easy with a variable, you can put a npc in the start with menu like mes "Select a group please"; menu "Group 1",gr1,"Group 2",gr2; gr1: set group,1; mes "Allright, you are in Group 1 now."; close; gr2: set group,2; mes "Allright, you are in Group 2 now."; close; } Then u can send players to diferents maps with group variable, or anything u want divided in the groups
  4. if(BaseLevel < 200) { mes "You need to be at least lvl 200."; close; } mes "Hi, i see you are lvl 200!"; with job if(JobLevel < 200)
  5. You need the item called Boarding_Halter is the id 12622 btw @Haziel i have all the sprites installed succesfull, but if i change the color of soul reaper or star emperor i have palette error, but all other jobs i can change palette without problems
  6. You need to kill all monsters and then go to register it? i have the db created ( dungeon_master dungeon_addons, etc) but is in blank, i need to add something? tables or something
  7. I try this but still having the problem https://gyazo.com/9450b5891e4f104430c6f4a192284595 how can i delete the korean characters? thx
  8. Anyone can help me for delete this korean characters? https://gyazo.com/9450b5891e4f104430c6f4a192284595 ill try with translate client in nemo but not work
  9. @AlayneWhen i go to the Maugre, all time says "Oops, i dont have dungeons, need to clear one first and come to me" but i dont buy any dungeon yet I install the default sql and i have the tables but not the content
  10. Buenas, te recomendaria que siguieras alguna guia si no tienes mucha idea, yo actualmente uso este emulador y me va bastante bien
  11. set .@size, query_sql( "select nombre from asesinoss where exp > 10 order by exp desc limit "+ .top, .@nombre$); for (set .@c, 0; .@c < .@size; set .@c, .@c + 1) mes "Top ^FF0000" +(.@c + 1) +"^000000 ^0000FF" + .@nombre$[.@c] +"^000000 "; for(.@i = 0; .@i < getarraysize(.@size); .@i++) { message .@nombre$[.@i],"Alguien os busca"; close; //CODE HERE } OnInit: // Script Configuration set .a, 1; // set .top, 10; // end; } Thanks for reply, i have this but still send message only for the first top of asesinoss, not to all, il try too with mes .@nombre$[.@i]; mes "Someone is searching you"; close; } but only appear a message in the npc, not send to group of "asesinoss" a message
  12. I have this script set .@size, query_sql( "select nombre from asesinoss where exp > 10 order by exp desc limit "+ .top, .@nombre$); for (set .@c, 0; .@c < .@size; set .@c, .@c + 1) mes "Top ^FF0000" +(.@c + 1) +"^000000 ^0000FF" + .@nombre$[.@c] +"^000000 "; message .@nombre$[.@1],"Alguien os busca"; message .@nombre$[.@2],"Alguien os busca"; close; OnInit: // Script Configuration set .a, 1; // set .top, 10; // end; } it works, take a rank of table "asesinoss" with order, but when i want to send a message to all 10 of rank, the message only send to the first of rank, anyone can help me please? thanks!
  13. Hi! I making a script for command to steal zeny from players, and its work's fine, i gain 10,000z everytime i use the command, but i can't take the zenys from target player, never rest the -10000 Zenys from target set Zeny, Zeny - 10000; message .@atcmd_parameters$[0],"U lost 10.000z, by: "+strcharinfo(0); message strcharinfo(0),.@atcmd_parameters$[0]+" "; set Zeny,Zeny + 10000;
  14. Hi, in Dungeon Hall system, i have one problem, i dont know how to clear a Dungeon for buy it.. or where are the mobs i need to clear, thx for all! And i dont know too where spawn the chest when u take a dungeon
  15. i have all the entries on DB , only the achievement_points in char does error, the others 3 are fine https://gyazo.com/bd06d4ddbff147328add1af0a05140b3
  16. Yes, is your own system, in a while i test with debugmes on OnNPCKillEvent, but the error with NPC, "Woot, no achievements found", when i want to active or desactive achievements, i dont know why if in mi DB SQL i can see all the 115 achievements thx for the help!
  17. Hello, thanks for all nice scripts! I have problems with achivement system, achievements like get 1,000,000z and die 10 times its count correctly, but achievements of kill monster etc does't work, and when i want to see the achievements in npc only say "Woot, no achievements found", what can i do? i have sql correctly installed
×
×
  • Create New...