Recent Posts

Pages: [1] 2 3 ... 10
1
Questions and Answers / Re: Companion commands and params
« Last post by Slowhand on June 10, 2025, 12:54:01 am »
You can change your own parameters if you are logged in as ADMIN with `param command:
`param 0 200 150
this will change small guns skill (index = 200) to value 150
to only check your param of small guns (200) you shall not type a 3rd value, so only:
`param 0 200

I do not know a way to change the params of NPC's or companions via admin tools, guess you would need to write one.
You can try to expand on the function "void ExecParamCommand(array<string@>@ command, Critter@ player, Critter@ target)" in cheats.fos for that to work somehow.

Here is an example how (better just copy the whole ExecParamCommand in cheats.fos over to your version) and then stand next (facing toward, 1 hex) a target critter, type:
`param 1 0
it will show the ST of that critter or type:
`param 1 0 10
to set the ST of that critter to 10.

https://github.com/Sasabmeg/FOnline-BraveNewWorld/issues/177

(Again, better just open cheats.fos from BNW repo and copy the whole function named ExecParamCommand, than check the diffs, easier probably)

Also for question use Rotators Discord or BNW discords, if you want faster replies.
https://discord.gg/MuhRYZF
https://discord.gg/fwwjvKbNEu

2
Questions and Answers / Re: Companion commands and params
« Last post by Gimper on June 08, 2025, 02:42:51 am »
Bump. I could really use a hand. For players AND npcs.
3
i build FOnline from Cvet repository
https://github.com/cvet/fonline

and get these files
https://postimg.cc/62nsQMqj

there is no exe file to run
i do not understand what to do with these files

please help
4
Questions and Answers / Re: Dialog
« Last post by Thatgun on April 02, 2025, 12:29:49 am »
5
Questions and Answers / How to post images here ?
« Last post by Thatgun on April 02, 2025, 12:28:35 am »


i try to use freeimage but img not shown in post

this doesn't work:
 _img_ https://freeimage.host/i/3RVdccQ _/img_
6
Questions and Answers / Re: Dialog
« Last post by Thatgun on April 02, 2025, 12:22:55 am »
client_io.fos -> mouse_down()
IGUIElementImageOpt@ avatar;
@avatar = GUI_AddImage(CLIENT_SCREEN_DIALOG, STR_NPC_AVATAR(dlgId)+".png", PT_ART_CRITTERS, 30, 60);

7
Questions and Answers / Re: Dialog
« Last post by Thatgun on April 02, 2025, 12:20:12 am »
i do the same in client_io.fos
put png file in client folder





8
Questions and Answers / Re: Dialog
« Last post by KingR on March 25, 2025, 03:06:08 am »
I found an alternative solution. With this:

void _DialogImage(int x, int y, int imageId, string@, array<int>@)

It gives a frozen image, but it's already very good

Thanks to all
9
Questions and Answers / Center the screen on the character script
« Last post by KingR on March 13, 2025, 12:35:53 am »
Hello everyone. I'm currently working on FOnline Reloaded Season 2, and I'd like to know if anyone knows a command to center the screen on the player character. I've searched high and low in the scripts and haven't found anything.

Thanks for your help!
10
Questions and Answers / Re: Dialog
« Last post by KingR on March 09, 2025, 05:16:25 pm »
Ok thank you very much. I will try this
Pages: [1] 2 3 ... 10