Jump to content

Freyr

Members
  • Posts

    38
  • Joined

  • Last visited

Everything posted by Freyr

  1. Here you can find the PR. This allows the menu to work with translations. https://github.com/Freyja-Folkvangr/FluxCP/commit/8f95e74259864edb7ed188ee38f7f4c3815a8ca9
  2. novice lv 99? are super novices allowed?
  3. thanks everyone! Joseph script works great Thank you guys
  4. Hello, I'm trying to kick idle players but it's not working. Well, when player logins it creates a timer (of 5 seconds lol, that's for testing) when timer is over should compare the player position and if the player didn't move it kicks. I'm having trouble attaching the RID to OnKick event here's the script OnPCLoginEvent: query_sql "SELECT `last_map`,`last_x`,`last_y` FROM `char` WHERE `char_id` = "+getcharid(0), @map$, @x, @y; addtimer ( 5000 ),strnpcinfo(0)+"::OnKick"; end; OnKick: query_sql "SELECT `last_map`,`last_x`,`last_y` FROM `char` WHERE `char_id` = "+getcharid(0), @map2$, @x2, @y2; if (@map$ == @map2$ && @x == @x2 && @y == @y2) { atcommand "@kick "+strcharinfo(0); deltimer strnpcinfo(0)+"::OnKick"; end; } } addtimer ( 5000 ),strnpcinfo(0)+"::OnKick"; end;
  5. I'd love to use these maps!! Can anyone reupload it please?
  6. What about the giant window problem?
  7. Hello, I have this issue with the item window and item names: Client: 2012 06 18 I think I have my LUA and LUB up to date. Anyone knows whats happening? thanks for the help!
×
×
  • Create New...