Jump to content

nivex

Creator
  • Posts

    4,787
  • Joined

  • Last visited

Everything posted by nivex

  1. nivex

    rb command

    hi, this is not a bug. they've always been able to see that grant raidablebases.block.filenames if you want to block them from seeing filenames
  2. nivex

    bases not spawning

    [RaidableBases] Grid initialization completed in 31 seconds and 832 milliseconds on a 4000 size map with 2058 potential points. You've successfully pasted the structure (-1013.8, 16.2, -188.9) raideasy11 [RaidableBases] raideasy11 @ G14 : 70 items You've successfully pasted the structure (400.7, 14.6, 1446.1) raideasy10 [RaidableBases] raideasy10 @ Q3 : 70 items You've successfully pasted the structure (863.9, 1.0, -620.0) may1 [RaidableBases] may1 @ T17 : 70 items You've successfully pasted the structure (-325.2, 49.2, 885.6) raideasy13 [RaidableBases] raideasy13 @ L7 : 70 items You've successfully pasted the structure (-687.0, 3.7, -1729.6) nivex10 [RaidableBases] nivex10 @ I25 : 70 items You've successfully pasted the structure (164.0, 96.0, -901.9) raideasy15 [RaidableBases] raideasy15 @ O19 : 70 items You've successfully pasted the structure (950.1, 1.0, 672.3) raideasy9 [RaidableBases] raideasy9 @ U9 : 70 items You've successfully pasted the structure (1064.8, 96.0, -1339.9) raideasy12 [RaidableBases] raideasy12 @ U22 : 70 items You've successfully pasted the structure (-286.8, 17.9, 1646.3) raideasy17 [RaidableBases] raideasy17 @ L2 : 70 items You've successfully pasted the structure (350.2, 1.0, -281.1) nivex8 [RaidableBases] nivex8 @ Q15 : 70 items You've successfully pasted the structure (-987.5, 1.0, -1327.4) raideasy1 [RaidableBases] raideasy1 @ G22 : 70 items You've successfully pasted the structure (1335.9, 1.0, -390.9) raideasy6 [RaidableBases] raideasy6 @ W16 : 70 items You've successfully pasted the structure (-1624.2, 1.3, 485.7) raideasy4 [RaidableBases] raideasy4 @ C10 : 70 items You've successfully pasted the structure (-475.2, 1.0, -1139.6) raideasy14 [RaidableBases] raideasy14 @ K21 : 70 items You've successfully pasted the structure (325.7, 40.8, 297.0) raideasy5 [RaidableBases] raideasy5 @ P11 : 70 items all 15 spawned using your provided config zip up the rb folders and DM them to me oxide/data/copypaste/ oxide/data/RaidableBases/
  3. nivex

    bases not spawning

    can you post the rest of the config
  4. nivex

    Bases spawning

    Changed Status from Pending to Closed
  5. nivex

    Raidable Bases

    @BadLands added /buyraid 0 pvp and /buyraid 0 pve in next update if neither pve or pvp argument is specified then it will still use config settings as it always has
  6. no problem
  7. nivex

    Bases spawning

    ill keep it in the update. it won't hurt anything being there
  8. its not just ladder type /rb as an admin and it will draw at each raid base location the names of the bases and other information
  9. nivex

    Bases spawning

    i didn't change anything that would affect spawn lag. last update was zone manager fixes and UI so I wouldn't know the cause go here: private IEnumerator EntitySetup() find this: checks = 0; add this on the next line: yield return CoroutineEx.waitForSeconds(0.01f); beyond this it would just be your server if its still lagging
  10. nivex

    Bases spawning

    "Amount of entities to paste per batch. Use to tweak performance impact of pasting": 15, this should be 5 yw
  11. you can type /rb to see all the names =]
  12. nivex

    Raidable Bases

    @BadLandsenable Convert PVP to PVE for maintained events. not possible to randomly spawn PVP/PVE from buyable events though. added in next update @Shneidah, i will test without unlimited ammo and try to fix.
  13. no problem
  14. "Force All Bases To Spawn At Height Level (0 = Water)": 0.0, "Foundations Immune To Damage When Forced Height Is Applied": true they're immune to damage. also 0 sets it to water. it is -1 by default / disabled easy profile
  15. nivex

    Bases spawning

    hi, post your copypaste config
  16. nivex

    Raidable Bases

    @War_Zombie it is telling you what to do already. you need to delete and download CopyPaste again. if it still doesn't work then you have a plugin deleting entities as they spawn in and you would need to delete that plugin too
  17. Changed Status from Pending to Closed
  18. nivex

    Raidable Bases

    its not the plugin. you must have all the messages in each language file for each language that you support if using ru language primarily then you would set the server default to ru using oxide.lang ru all language API is done by Oxide using lang.GetMessage where the client language is determined by player.UserIDString if they are using Turkish and you have only English and Russian then it will use English. this is not a bug if messages do not exist in your language files then you will see the key instead. this is not a bug if your client language is set to English then you will see English. this is not a bug anyway, easier to continue using the English file since you're doing it already.
  19. i would need the profiles too
  20. nivex

    Raidable Bases

    you just need to add the new language messages from English to Russian file with each update. there's no issue with having to do that since you are going to translate the new messages regardless
  21. nivex

    Raidable Bases

    @aimacak string text = rf(Instance.lang.GetLanguage(userid) != "en" ? mx($"Mode{mode}", userid) : mx($"Mode{mode}", userid).SentenceCase()); right, I forgot people use English language file instead of their own language file. but why is that the case? change to: string text = rf(mx($"Mode{mode}", userid)); if (GetRaidableMode(text) != RaidableMode.Random) { text = text.SentenceCase(); } proper way to do this is to set the server language using oxide.lang
  22. nivex

    Raidable Bases

    it all must use the same size its anchored to the middle center. it appears off because its a special character. ⓧ
  23. nivex

    Raidable Bases

    @aimacak it's using the text from your language file. ModeEasy, ModeMedium, ModeHard, ModeExpert, ModeNightmare. you have colors in those messages, so it's going to show them. string text = Instance.lang.GetLanguage(userid) != "en" ? mx($"Mode{mode}", userid) : mx($"Mode{mode}", userid).SentenceCase(); you would need to change that to: string text = rf(Instance.lang.GetLanguage(userid) != "en" ? mx($"Mode{mode}", userid) : mx($"Mode{mode}", userid).SentenceCase()); will note the flame turret down.
  24. nivex

    Abandoned Bases

    I may add it at some point
  25. sounds like another plugin blocking it unless you have configured to block outside damage or such
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.8k

Files Sold

Total number of files sold.

2.4m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.