Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/16/2016 in all areas

  1. 2 points
  2. 1 point
    @Lucky he dont want it every 2 hours he want 2,4,6,8 so he must use can_open_entry
  3. 1 point
    put interval to 0/2/0
  4. 1 point
    function can_open_entry_deathcircle( map ) local Now_Time = GetNowTime() if Now_Time == 2 or Now_Time == 4 or Now_Time == 6 or Now_Time == 8 or Now_Time == 14 or Now_Time == 16 or Now_Time == 18 or Now_time == 20 then return 1 else return 0 end end
  5. 1 point
    1 - create a new validation function within your code section in your groupserver.exe, like this: ( be sure to create it within a free space ) 2 - take this new function pointer, and replace the current one: note: used offsets on the pics maybe not applied to your groupserver.exe, in my case I used one from the version 1.36 - edit: this function allows a-z A-Z 0-9
  6. 1 point
    Hi, sorry for late reply and a late revive The idea is simple but is quite limited. inside:AttrCalculate function Creat_Item(): this will set up attrs to be editable. if GetItemID(item) == *YOUR_RING_ID then Add_Item_Attr(ITEMATTR_VAL_STR, 0) Add_Item_Attr(ITEMATTR_VAL_CON, 0) Add_Item_Attr(ITEMATTR_VAL_AGI, 0) Add_Item_Attr(ITEMATTR_VAL_STA, 0) Add_Item_Attr(ITEMATTR_VAL_DEX, 0) end now to edit stats, i'm sure you already know: using: SetItemAttr(*PLAYER_SLOT, *STAT, *STAT_NUM) to make this even possible, inside iteminfo.txt the equipment must have the necessary attributes of STR/CON/AGI/DEX/STA: 0,100 0,100 0,100 0,100 0,100 - when the item is created, 0 goes to all stats - when the item is upgraded, the maximum number each stat can accumulate is 100. (note these variables can be editable to your likings) I will check thoroughly how we can add other types of equipments, but for now it is limited to just a few itemtypes, IIRC, rings-fairies-medals/ and some other ones.
  7. 1 point
    I like to make servers that are PVP Intensive/Mid Farming, also it wont be mainly fc/ds i would start increasing level cap by time but still give some specailities for those who keep going for FC/DS characters even give them the chance to be as powerful as higher level players, the new system that im talking about that makes end-game very late would allow those who stick to FC/DS to be able to reach the power of a max leveled player.
  8. 1 point
    It is the "divide and conquer" methodology, if 1 subsystem crashes, the whole system will not crash. That is the reason why we have a GroupServer too, to provide communication between GameServers.
  9. 1 point
    @OldHero What the problem? Just delete if condition for days function can_open_entry_YOURMAP( map ) local Now_Time = GetNowTime() if Now_Time == 0 or Now_Time == 12 then return 1 else return 0 end end
  10. 1 point
    @OldHero This script will let your map open only on Saturday and Sunday, only at 12 AM and 12 PM. Not tested, if u use it tell me how it goes.
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...