Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/22/14 in all areas

  1. mes "[ MVP Summoner ]"; mes "show me if you have zeny"; if( Zeny < .@zenyCost ) { mes "sry you dont have zeny"; close; } else { set Zeny, Zeny - .@zenyCost; mes "[ MVP Summoner]"; mes "monster will be spawn soon"; close2; //You must use close2 instead of close sleep2 10000; //10s announce "MVP Has Been Spawned",bc_blue|bc_all; monster "guild_vs1",50,57,"Event Monster",1511,1,"Monster Event::OnThisMobDeath"; end; } OnThisMobDeath: announce ""+strcharinfo(0)+"killed the mvp",bc_blue|bc_all; end;
    1 point
  2. When you do that: $find / -name libpcre.so.3 What you get after? Can you give us a screen?
    1 point
  3. try this http://pastebin.com/raw.php?i=n1H0tV7W
    1 point
  4. Try this. src/config open secure.h disable #define SECURE_NPCTIMEOUT
    1 point
  5. add this maybe at char.c::char_check_char_name // check for reserved names if( strcmpi(name, charserv_config.wisp_server_name) == 0 ) return -1; // nick reserved for internal server messages + // Failed if char name has 'GM' (case-sensitive) + if (strstr(name, "GM")) + return -1; // Check Authorised letters/symbols in the name of the character if( charserv_config.char_config.char_name_option == 1 )
    1 point
×
×
  • Create New...