Kei
Members-
Content Count
101 -
Joined
-
Last visited
About Kei
-
Rank
Advanced Member
Recent Profile Visitors
2590 profile views
-
i already checked it and its all the same .. but i don't know whats the problem
-
thanks thats the problem.. btw i have another error after i restart my server again the map server is not running.. it only says [status]: Awaiting maps from map-server. .. can you help me with it?
-
what do you mean by programs that not allowing?
-
i don't know why but when i try to login it says failed to connect.. the server is running from my vps smooth and i don't know why its failed to connect everytime i try to login... i already edit the clientinfo.xml
-
i have some question to ask. 1st: whats the best client to use and where can i get it??? 2nd: where can i get the latest data folder(grf) ??? 3rd: where can i get the latest kro client?
-
i have this patch from annieruru but i'm having an error npc.c: In function 'npc_read_event_script':npc.c:4135: error: 'struct Script_Config' has no member named 'stat_calc_event_name' heres the script {"Stat Calc Event",script->config.stat_calc_event_name}, i dont know whats the problem is
-
i think this one is for bonus and not will change the race of the player.. what i need is a source(i think) that will change the race of the player
-
i don't think faction system is i'm looking .. i just want a system like in daredevilRO where they have a armors that will change your race from demihuman to fish,demon etc.
-
how can i change the race of the player.? i want them to choose what race they want.
-
hello. is there a guide on how to make another race?
-
you can buy vps with ddos protection for 10$ from frantech but they not offer free setup etc.. i can help you setup your server..
-
i can just add 1 ? or i can add more?
-
can i increase the name character from 23 to 35 or 40?
-
what command can i put instead of bonu_script? btw heres the whole script prontera,150,180,4 script Slayer Title 54,{ mes "Would you like to become Dragon Slayer or Demon Slayer?"; next; if ( select ( "Yes", "No" ) == 2 ) { mes "Very well, I shall be here if you change your mind."; close; } mes "Select what you want to become"; .@s = select( "Dragon Slayer", "Demon Slayer" ) -1; if ( countitem(7777) ) { delitem 7777, 1; atcommand "@fakename ["+ .title$[.@s] +"] "+ strcharinfo(0); bonus_script "{ bonus bStr,5000; }", .buff_last, 8; addtimer .buff_last * 1000, strnpcinfo(0) +"::Onresettitle"; mes "Congrats You've become "+ .title$[.@s]; player_title$ = gettimetick(2) +"#"+ .@s; } else { mes "You don't have any requirements for Dragon Slayer or Demon Slayer."; mes "Come back when you get one."; } close;OnInit: setarray .title$, "Dragon Slayer", "Demon Slayer"; .buff_last = 60; // last 10 seconds end;OnPCLoginEvent: if ( player_title$ == "" ) end;// dispbottom player_title$ +"~"+ gettimetick(2); explode .@player_title$, player_title$, "#"; .@time = atoi( .@player_title$[0] ); .@title = atoi( .@player_title$[1] ); if ( .@time < gettimetick(2) ) { .@timeleft = gettimetick(2) - .@time; atcommand "@fakename ["+ .title$[.@title] +"] "+ strcharinfo(0); bonus_script "{ bonus bStr, 5000; }", .@timeleft, 8; addtimer .@timeleft * 1000, strnpcinfo(0) +"::Onresettitle"; } else player_title$ = ""; end;Onresettitle: atcommand "@fakename"; player_title$ = ""; end;}