repository
stringclasses
156 values
issue title
stringlengths
1
1.01k
labels
stringclasses
8 values
body
stringlengths
1
270k
android10androidcleanarchitecture
autoloadimageview break the rule
Question
hi guy at first thank for the great project I enjoy to read about this topic and fiddle around with your project so I think I get the main concept but one think bother I the autoloadimageview it seem to I that these view component break with the basic concept of the clean architecture here we have model stuff like the cache and network access as well as a lot of business logic like check the internet connection and change the loading logic what s the reason for that thank for your help in advance
android10androidcleanarchitecture
chain use case
Question
hi guy thank for your project it be great I be wonder whether I can execute one use case with the result of the previous without callback hell
android10androidcleanarchitecture
where content provider and service would fit
Question
this be not an issue just an architectural question let s say that our application have a sqlite database a content provider that expose this datum and an intentservice that be responsible for sync datum by call the rest service and update the database where these two component should be place I think the contentprovider would easily be place in the data module an additional repository implementation in the data module would query the content provider and transform the cursor datum into entity object in order to be consume by the use case for the usecase there s no difference it will still talk to the interface and it will get back the datum it want of course the proper concrete implementation would be inject via dagger the service could also be place in the data module a new interface could be introduce in the domain I e syncrepository which will be use by the use case the actual implementation of it in the data module will start the service with an intent what do you think
android10androidcleanarchitecture
how to deal with transaction in domain layer
Question
I have a question about handle transaction between datum and domain layer think about a usecase where two entity should be persist into a local database in one transaction should the domain layer know something about transaction when call into the datum layer and what about nest transaction who be responsible to decide whether two or more operation should handle atomic as the domain layer doesn t know something about where and how the datum be persist another point be also how to handle if there be a foreign key relationship between entity thank you for any advice
android10androidcleanarchitecture
good practice to pass dynamic parameter to an usecase
Question
as in the example usecase s parameter be set via usermodule java module public class usermodule private int userid 1 public usermodule public usermodule int userid this userid userid provide peractivity name userdetail usecase providegetuserdetailsusecase userrepository userrepository threadexecutor threadexecutor postexecutionthread postexecutionthread return new getuserdetailsusecase userid userrepository threadexecutor postexecutionthread but there be some case when buildusecaseobservable depend on some dynamic parameter I try to create an interface to provide these parameter and let the view in mvp implement it and pass they to usermodule with this approach if the view be a fragment then I have to re create usermodule again in the fragment java public interface useridprovider int getuserid any suggestion recommendation
android10androidcleanarchitecture
interactor name with verb
Question
android10 can I ask about the reason why you decide to change the name from a noun phrase getuserdetailusecase to a verb phrase getuserdetail in this commit diff a2ddc8afab1dd529cfe7a6794ac74bcf
android10androidcleanarchitecture
question about license
Question
hello I m java and android beginner and I want to start with clean architecture I think this project example fit my need so I get a question can I use a copy of your source code or part of source code file single file in my project without specify a copy of current license apache 2 0 and copyright for example can I use your class errorbundle in my own project without copyright and license text in it I do not want to violate the license and I have read about apache 2 0 but it be not clear to I yet my project be non commercial but question cover commercial project also proprietary not open source thank
android10androidcleanarchitecture
how to log domain module
Question
I use android util log class for log and debug my code so I end up with an android dependency inside the domain module this be a problem when it come to unit testing because I have to mock the static method of this class use powermock which in my case it increase code complexity unnecessarily be there any other option to log the domain module without have to mock the logger for the test
android10androidcleanarchitecture
where be the good place to merge different entity
Question
so imagine that you need to complement the application add new entity and add list of pet to user detail screen I think that the user presentation model should contain a list of pet java public class usermodel private int userid private string fullname private list pet public int getuserid return userid public void setuserid int userid this userid userid public string getfullname return fullname public void setfullname string fullname this fullname fullname public list getpet return pet public void setpet list pet this pet pet the question be where should I add a list of pet to the user option 1 in interactor then you need to change the domain model I ll add a list of pet into the domain model to be able to return the pet java public class getuserdetail extend usecase private final int userid private final userrepository userrepository private final petrepository petrepository inject public getuserdetail int userid userrepository userrepository petrepository petrepository threadexecutor threadexecutor postexecutionthread postexecutionthread super threadexecutor postexecutionthread this userid userid this userrepository userrepository this petrepository petrepository override protect observable buildusecaseobservable return observable zip this userrepository user this userid this petrepository pet this userid new func2 user override public user call user user list pet user setpet pet return user option 2 in presenter interactor can return observable and not to accept subscriber then you can add list of pet to user model in presenter the domain model will not change java peractivity public class userdetailspresenter implement presenter i d use to retrieve user detail private int userid private userdetailsview viewdetailsview private final usecase getuserdetailsusecase private final usecase getpetlistusecase private final usermodeldatamapper usermodeldatamapper inject public userdetailspresenter name userdetail usecase getuserdetailsusecase name petlist usecase getpetlistusecase usermodeldatamapper usermodeldatamapper this getuserdetailsusecase getuserdetailsusecase this getpetlistusecase getpetlistusecase this usermodeldatamapper usermodeldatamapper private void getuserdetail observable user this getuserdetailsusecase execute map new func1 override public usermodel call user user return this usermodeldatamapper transform user observable pet this getpetlistusecase execute observable zip user pet new func2 usermodel override public usermodel call usermodel user list pet user setpet pet return user subscribe new userdetailssubscriber rxlogsubscriber private final class userdetailssubscriber extend defaultsubscriber override public void oncomplete userdetailspresenter this hideviewloade override public void onerror throwable e userdetailspresenter this hideviewloading userdetailspresenter this showerrormessage new defaulterrorbundle exception e userdetailspresenter this showviewretry override public void onnext usermodel user userdetailspresenter this showuserdetailsinview user please advise which option be good thank
android10androidcleanarchitecture
nullpointerexception on userlistactivity
Bug
have crash on first launch after I click on load sample datum 12 23 12 46 53 522 2958 2958 com fernanependocejas android10 sample presentation e fatal exception main process com fernanependocejas android10 sample presentation pid 2958 java lang runtimeexception unable to start activity componentinfo com fernanependocejas android10 sample presentation com fernandocejas android10 sample presentation view activity userlistactivity java lang nullpointerexception at android app activitythread performlaunchactivity activitythread java 2184 at android app activitythread handlelaunchactivity activitythread java 2233 at android app activitythread access 800 activitythread java 135 at android app activitythread h handlemessage activitythread java 1196 at android os handler dispatchmessage handler java 102 at android os looper loop looper java 136 at android app activitythread main activitythread java 5001 at java lang reflect method invokenative native method at java lang reflect method invoke method java 515 at com android internal os zygoteinit methodandargscaller run zygoteinit java 785 at com android internal os zygoteinit main zygoteinit java 601 at dalvik system nativestart main native method cause by java lang nullpointerexception at com fernandocejas frodo aspect logobservable methodannotatedwithrxlogobservable logobservable java 27 at com fernandocejas android10 sample data net restapiimpl userentitylist restapiimpl java at com fernandocejas android10 sample data repository datasource clouduserdatastore userentitylist clouduserdatastore java 51 at com fernandocejas android10 sample datum repository userdatarepository user userdatarepository java 54 at com fernandocejas android10 sample domain interactor getuserlist buildusecaseobservable getuserlist java 41 at com fernandocejas android10 sample domain interactor usecase execute usecase java 59 at com fernandocejas android10 sample presentation presenter userlistpresenter getuserlist userlistpresenter java 113 at com fernandocejas android10 sample presentation presenter userlistpresenter loaduserlist userlistpresenter java 77 at com fernandocejas android10 sample presentation presenter userlistpresenter initialize userlistpresenter java 68 at com fernandocejas android10 sample presentation view fragment userlistfragment loaduserlist userlistfragment java 155 at com fernandocejas android10 sample presentation view fragment userlistfragment onactivitycreate userlistfragment java 76
android10androidcleanarchitecture
long run use case and orientation change
Enhancement
in the current approach every time after the orientation change the use case be execute once again it would be a good solution if there would be a way to reuse the current operation after the orientation change if the previous one be still run
android10androidcleanarchitecture
rethink observable create
Question
accord to this article here they say that don t use observable create if you can it s very easy to shoot yourself in the foot and then shoot again for each new subscriber
android10androidcleanarchitecture
convention violation
Question
the activitymodule activity method doesn t conform to the provider method naming convention be this on purpose isn t provideactivity a well name
android10androidcleanarchitecture
how to inject an activity from datum package
Question
hello I have a class with the follow constructor in the datum package java inject public gcmmanager activity activity this activity activity I think it would work because of activitymodule but I get the follow error java error 46 20 error android app activity can not be provide without an inject constructor or from an provide annotated method I ve try to add a providesactivity method to the activitymodule but it doesn t work either any idea of what should I do
grasscuttersgrasscutter
bug how to reset the pearl battle pass reward and time and obtain a new round of reward
Bug
how to reset the pearl battle pass reward and time and obtain a new round of reward
grasscuttersgrasscutter
bug memory leak
Bug
each player occupy a significant amount of memory in this program this be a server that have be run for 10 hour prior to this the online player count remain between 10 and 30 when player exit the game the server do not clean up the correspond memory result in excessive memory usage even when there be only two player leave on the server this be even crazy than gio 10 10 30 gio 2024 03 31 202752
grasscuttersgrasscutter
Bug
0
grasscuttersgrasscutter
how to reset the pearl battle pass reward and time and obtain a new round of reward
Enhancement
how to reset the pearl battle pass reward and time and obtain a new round of reward
grasscuttersgrasscutter
bug newly register account play the opening storyline twice
Bug
2386 this submission 2386 will cause newly register account to play the opening storyline twice after I revert this pull request everything return to normal and the opening storyline be not play an abnormal number of time 2386 pr 2024 03 20 205416
grasscuttersgrasscutter
bug can t change language to japanese jp
Bug
no matter what I do I keep get a error when try to change the language to japanese it say can not download resource and say error code 9000 I put in all the file for the japanese voice over and when I try to even use the language command it say the server doesn t have the file update get it fix
grasscuttersgrasscutter
bug ip
Bug
http startimmediately false bindaddress 0 0 0 0 bindport 443 accessaddress 0 0 0 0 accessport 0 encryption useencryption false useinrouting false keystore keystore p12 keystorepassword 123456 policy cor enable true allowedorigin file indexfile index html errorfile 404 html game bindaddress 0 0 0 0 bindport 22102 accessaddress 0 0 0 0 accessport 0
grasscuttersgrasscutter
bug ley line be miss in the game
Bug
do you look for other closed issue that have the same problem yes describe the bug ley line the ley line blossom be miss on map and I can not find it anywhere include the adventurer handbook which branch do you use game version 4 0 0 grasscutter version 1 7 4 2b9cbe38e additional context do I need to configure my local server or use some command to activate ley line
grasscuttersgrasscutter
bug j 1 7 4
Bug
do you look for other closed issue that have the same problem describe the bug bug which branch do you use screenshot kzltvamu0d dwe sqayvcj8 h 7 ruzm loxy2vsswsxc7 additional context
grasscuttersgrasscutter
Enhancement
4 1
grasscuttersgrasscutter
Bug
2024 02 06 144406 2024 02 06 144850
grasscuttersgrasscutter
white screen after update grasscutter to 1 7 4
Bug
after update grasscutter to version 1 7 4 it no long load any player past whitye screen loading bar doesn t appear but uid do so the server know this player isn t new thing I try update the resource as from yuukips s gitlab and through cultivation download resource button create new player get the first cutscene and then server connection lose when set up nickname grasscutter log be totally fine not any resource related issue although on 1 7 3 they do appear it seem like 1 7 4 just don t want to load resource at all image maybe this be relate to an old cpu I m run the server on core 2 duo without even sse4 1 instruction set grasscutter be run in docker container with all the late file relate to it previous version run totally fine
grasscuttersgrasscutter
bug the download path have be dmca t t
Bug
get game version rel4 0 x 4 0 x client can be find here if you don t have it
grasscuttersgrasscutter
bug
Bug
src main java emu grasscutter game entity entitymonster java 388 var towermanager getscene getplayer get 0 gettowermanager
grasscuttersgrasscutter
bug 4214
Bug
4214
grasscuttersgrasscutter
bug spawn
Bug
spawn drop json
grasscuttersgrasscutter
bug 4 0
Bug
do you look for other closed issue that have the same problem describe the bug image gm which branch do you use screenshot additional context
grasscuttersgrasscutter
grasscutter 30 kb
Bug
grasscutter 30 kb image
grasscuttersgrasscutter
bug activityconfig json
Bug
do you look for other closed issue that have the same problem describe the bug which branch do you use screenshot additional context
grasscuttersgrasscutter
bug high cpu usage in the development branch and player registration issue in the hyper branch development cpu hyper
Bug
development branch experience high server cpu usage when player acquire a large number of item if the cpu be heavily load for an extended period all online player get kick out and no player can reconnect to the game the hyper branch on the other hand exhibit excellent performance with minimal cpu usage when player acquire a large number of item however there be an issue after start the server and create around a dozen new account further attempt to create new account fail initially it get stuck at the naming stage where click the confirm button have no response if the client be forcefully close and the user try to log in to the newly create account it get stick on a blank screen the uid be visible reboot the server allow for the creation of new account again but after some time it get stuck at the registration stage once more development cpu cpu hyper cpu uid
grasscuttersgrasscutter
bug serenitea pot can not be use
Bug
gct npc the specific performance be that after unlock dongtian with the serenitea pot item it will cause a bomb and enter the game interface will have a white screen but the indoor scene I transmit through gct be a void and the task scene I enter do not have the relevant npc ayuan and the house image image image qu 7165410 image I can t unlock through this page it will cause a bomb home json grasscutter home json I have read other answer that seem to delete the database under home but I don t know how to do it specifically there be too many json file there be no folder call home under my grasscutter folder only a lot of relate json file image
grasscuttersgrasscutter
feature request world time adjustment function
Enhancement
os add world time adjustment function and freeze time os if possible I would like to freeze time flow and stop the world but consider the stationary world may be difficult set time xxxx minecraft set time freeze for example we can use the set time xxxx command to adjust the time similar to set time in minecraft the flow of time and the activity of the big world be stop by the frozen command thank for the answer
grasscuttersgrasscutter
how to get the new feature protobuf file
Enhancement
I want to implement some feature of the new version of the genshin impact please ask how to get the protobuf file of the official server
grasscuttersgrasscutter
bug the number of bug in this game be comparable to that of zeus s relative
Bug
firstly the drop of the flower of conquest world boss only drop breakthrough material if possible please let I know where it be if the original game setting be well and the stamina display be disabled please let I know boss secondly the detection of the adventure level in the secret realm be not effective similar to the situation where adventure level 22 be turn on but can not be detect the nearby dialogue be call unlocked and require click twice on the first unlocked type of secret realm animation at the same time a series of bug such as inability to interact failure to discover after discovery and inability to transmit will occur 22 bug thirdly daily delegation be not a mandatory option but for the experience item I really don t want to increase your workload however since it be a collection I will put it here fourthly the wind seal store will trigger the lisa legend quest dialogue which basically block the exchange of the wind seal fifth the legend of leize mission the wolf king of the north wind can not be refresh and require manual intervention sixth in the immortal quest escape from the scene of the immortal sending ceremony will not trigger a conversation with the strange man chapter 7 section 1 of chapter 1 when seek to borrow wind from liuyun and offer to the true lord interaction be not possible the stele will not take effect after enter the secret realm the eighth and most impactful aspect of the game experience be that after delete all the monster once I don t know if this cause it I become extremely stutter in two area even with the low graphic quality when I complete the mission between the cloud I couldn t see the interior of those two mountain and after stutter for more than ten second they completely freeze after re enter I have a little time to run away during one of the high altitude stutter I see gold coin below the cliff I suspect that the accumulation of a large number of gold coin special effect refresh by mountain relate activity mechanism have cause extreme lag ninth the severe cold value be invalid the deep red stone be shatter without drop and the honeysuckle tree and other can not interact this be not a criticism or solution post we look forward to address some of they because we can not be too demand we hope that player can attach a multilingual bug list below this post and communicate with each other after all cn can not access discord this be not a reminder post and we welcome any comment to improve the game experience if developer can see it of course it be even well I win t get impatient because you don t fix it you ve do it very well already bug cn discord additionally use the grasscutter integrate file can not change store price and other parameter but this be the small issue grassscutter the stuck area between the cloud be as follow 20231211192750
grasscuttersgrasscutter
azdaha take dmg in immune phase
Bug
and no dmg health percent limit for his change element phase like the og
grasscuttersgrasscutter
bug wish primogem convert
Bug
do you look for other closed issue that have the same problem yes describe the bug modal covert menu do not show up when I try to get wish console nothing show which branch do you use grasscutter version 1 7 3 git hash 564b60902 screenshot additional context
grasscuttersgrasscutter
Bug
grasscutter version 1 7 3 13c40b53a
grasscuttersgrasscutter
bug can not solve chest drop
Bug
do you look for other closed issue that have the same problem first occurrence describe the bug many chest will issue error when open and some of the more serious chest will not be able to open and block the quest process which branch do you use garsscutter 1 7 3 jar screenshot additional context 10 24 13 can not solve chest drop chest drop i d 0 drop tag fallback to legacy drop system 10 24 13 could not find the handler of this type of chest sceneobj essencech default lv4 the number of error text be too large all region and type of treasure chest have occur
grasscuttersgrasscutter
bug dependency construction problem
Bug
do you look for other closed issue that have the same problem yes describe the bug when javalin be version 5 5 0 the context class be not include in the package which cause the project to fail to compile which branch do you use grasscutter version 1 7 3 dev git hash 564b609 java version 17 0 8 os windows10 screenshot image image additional context file 1 emu grasscutter auth authenticationsystem java 2 emu grasscutter auth defaultauthenticator java 3 emu grasscutter server http httpserver java
grasscuttersgrasscutter
bug
Bug
4 0
grasscuttersgrasscutter
bug
Bug
4 0
grasscuttersgrasscutter
bug wooden shieldwall mitachurl can t reform it s shield
Bug
do you look for other closed issue that have the same problem yes describe the bug after you burn a wooden shieldwall mitachurl shield when they try to remake it they play the pull slime out of ground and smack it animation but they go right back to fight with there fist which branch do you use 1 7 3 cdb0dc560 quest all in one screenshot kinda hard to show with a screenshot could provide a video if necessary additional context witness on 2 different location log file 2023 11 22t15 33 39z loading grasscutter 2023 11 22t15 33 39z start grasscutter 2023 11 22t15 33 39z game version 4 0 0 2023 11 22t15 33 39z grasscutter version 1 7 3 cdb0dc560 2023 11 22t15 33 40z loading plugin characterbuilder 2023 11 22t15 33 40z loading plugin giveartifactsnoo 2023 11 22t15 33 40z loading plugin mobwave 2023 11 22t15 33 40z loading plugin quick 2023 11 22t15 33 40z loading plugin setlevel 2023 11 22t15 33 40z loading plugin switch element plugin 2023 11 22t15 33 40z the switchelement have be load 2023 11 22t15 33 40z loading resource 2023 11 22t15 33 44z finish loading resource 2023 11 22t15 33 44z dispatch dispatch server start at 1 m 33m127 0 0 1 443 0 m 2023 11 22t15 33 44z grasscutter be free software if you have pay for this you may have be scamme homepage 2023 11 22t15 33 44z game server start at 1 m 33m127 0 0 1 22102 0 m 2023 11 22t15 33 44z enable plugin characterbuilder 2023 11 22t15 33 44z the characterbuilder plugin have be enable 2023 11 22t15 33 44z enable plugin giveartifactsnoo 2023 11 22t15 33 44z the give artifact plugin have be enable 2023 11 22t15 33 44z enable plugin mobwave 2023 11 22t15 33 44z the mobwave plugin have be enable 2023 11 22t15 33 44z enable plugin quick 2023 11 22t15 33 44z quick have be enable 2023 11 22t15 33 44z enable plugin setlevel 2023 11 22t15 33 44z the setlevel plugin have be enable 2023 11 22t15 33 44z enable plugin switch element plugin 2023 11 22t15 33 44z the switchelement have be enable 2023 11 22t15 33 44z do for help type help 2023 11 22t15 34 07z dispatch client 127 0 0 1 request query region list 2023 11 22t15 34 07z dispatch client 127 0 0 1 be try to log in via token 2023 11 22t15 34 07z dispatch client 127 0 0 1 log in via token as 10002 2023 11 22t15 34 07z dispatch client 127 0 0 1 succeed to exchange combo token 2023 11 22t15 34 07z client 127 0 0 1 request query cur region os usa 2023 11 22t15 34 17z client connect from 127 0 0 1 65384 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133402002 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group155005095 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133402016 lua 2023 11 22t15 34 42z an error occur while loading group 133305051 in scene 3 org luaj vm2 luaerror script 144 attempt to index a nil value stack traceback script 216 in function lf initialize group script 302 in main chunk script 127 in function lf initialize group script 230 in main chunk java in at org luaj vm2 luavalue error unknown source at org luaj vm2 luavalue indexerror unknown source at org luaj vm2 luavalue gettable unknown source at org luaj vm2 luavalue get unknown source at org luaj vm2 luaclosure execute unknown source at org luaj vm2 luaclosure call unknown source at org luaj vm2 luaclosure execute unknown source at org luaj vm2 luaclosure oninvoke unknown source at org luaj vm2 luaclosure invoke unknown source at org luaj vm2 script luascriptengine luajcompiledscript eval unknown source at org luaj vm2 script luascriptengine luajcompiledscript eval unknown source at emu grasscutter script scriptloader eval scriptloader java 127 at emu grasscutter script datum scenegroup load scenegroup java 108 at emu grasscutter game world worlddatasystem getinvestigationgroup worlddatasystem java 68 at emu grasscutter game world worlddatasystem getinvestigationmonster worlddatasystem java 99 at emu grasscutter game world worlddatasystem lambda getinvestigationmonstersbycityid 8 worlddatasystem java 145 at java base java util stream referencepipeline 3 1 accept referencepipeline java 197 at java base java util stream referencepipeline 2 1 accept referencepipeline java 179 at it unimi dsi fastutil int int2objectopenhashmap valuespliterator acceptonindex int2objectopenhashmap java 1185 at it unimi dsi fastutil int int2objectopenhashmap valuespliterator acceptonindex int2objectopenhashmap java 1168 at it unimi dsi fastutil int int2objectopenhashmap mapspliterator foreachremaine int2objectopenhashmap java 839 at it unimi dsi fastutil int int2objectopenhashmap valuespliterator foreachremaine int2objectopenhashmap java 1168 at java base java util stream abstractpipeline copyinto abstractpipeline java 509 at java base java util stream abstractpipeline wrapandcopyinto abstractpipeline java 499 at java base java util stream nodes collectortask doleaf nodes java 2183 at java base java util stream nodes collectortask doleaf nodes java 2149 at java base java util stream abstracttask compute abstracttask java 327 at java base java util concurrent countedcompleter exec countedcompleter java 754 at java base java util concurrent forkjointask doexec forkjointask java 387 at java base java util concurrent forkjoinpool workqueue toplevelexec forkjoinpool java 1312 at java base java util concurrent forkjoinpool scan forkjoinpool java 1843 at java base java util concurrent forkjoinpool runworker forkjoinpool java 1808 at java base java util concurrent forkjoinworkerthread run forkjoinworkerthread java 188 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133316274 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group166001287 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group155005321 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133403186 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133403513 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group166001112 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133316134 lua 2023 11 22t15 34 42z could not find script at path scene 3 scene3 group133403003 lua 2023 11 22t15 36 43z client disconnect from 127 0 0 1 65384 2023 11 22t15 36 44z dispatch client 127 0 0 1 be try to log in via token 2023 11 22t15 36 44z dispatch client 127 0 0 1 log in via token as 10002 2023 11 22t15 36 44z dispatch client 127 0 0 1 succeed to exchange combo token 2023 11 22t15 36 44z client 127 0 0 1 request query cur region os usa
grasscuttersgrasscutter
bug can not open esc shop
Bug
do you look for other closed issue that have the same problem already read describe the bug can not open esc shop normally it be empty inside which branch do you use game version 4 0 0 grasscutter version 1 7 3 13c40b53a screenshot 23 28 05 lua call trigger fail in group 133307096 with condition event group load 96008 scriptargs param1 133307096 param2 0 param3 0 source eid 0 target eid 0 group i d 133307096 source null type 29 org luaj vm2 luaerror script 144 attempt to call nil stack traceback script 144 in function checkisingroup script 144 in function java in at org luaj vm2 luavalue checkmetatag unknown source at org luaj vm2 luavalue callmt unknown source at org luaj vm2 luavalue call unknown source at org luaj vm2 luaclosure execute unknown source at org luaj vm2 luaclosure call unknown source at emu grasscutter script scenescriptmanager safetycall scenescriptmanager java 1004 at emu grasscutter script scenescriptmanager callscriptfunc scenescriptmanager java 997 at emu grasscutter script scenescriptmanager evaluatetriggercondition scenescriptmanager java 933 at emu grasscutter script scenescriptmanager handleeventfortrigger scenescriptmanager java 905 at emu grasscutter script scenescriptmanager realcallevent scenescriptmanager java 886 at emu grasscutter script scenescriptmanager lambda callevent 28 scenescriptmanager java 857 at java base java util concurrent executors runnableadapter call executor java 539 at java base java util concurrent futuretask run futuretask java 264 at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java 1136 at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java 635 at io netty util concurrent fastthreadlocalrunnable run fastthreadlocalrunnable java 30 at java base java lang thread run thread java 842 additional context image
grasscuttersgrasscutter
bug 127 0 0 1 ip why can I use 127 0 0 1 to connect to the server instead of use a local ip address
Bug
127 0 0 1 ip config json accessaddress why can I use 127 0 0 1 to connect to the server instead of use a local ip address change accessaddress in config json
grasscuttersgrasscutter
Enhancement
buff
grasscuttersgrasscutter
do we have a new version of the game
Enhancement
I have finish experience the content of version 4 0 I hope to experience the update version of the game
grasscuttersgrasscutter
bug wish and shop bug
Bug
when I buy fate from shop they be still 0 I try to use command to get myself but it be still 0
grasscuttersgrasscutter
bug can not change the language in config json
Bug
I edit config json language language zh cn fallback zh cn document en then reload 08 45 31 fail to load language file zh cn json fall back to zh cn json 08 45 31 fail to load language file zh cn json fall back to en us json finally I try rename zh cn json to zh cn json and then no err
grasscuttersgrasscutter
bug
Bug
1 image 2 mongodb image 3 gm image
grasscuttersgrasscutter
bug 127 0 0 1 ip 443 mitm it
Bug
grasscuttersgrasscutter
bug ayaka s skill doesn t emit the right amount of particle
Bug
do you look for other closed issue that have the same problem none I have check describe the bug ayaka s skill only emit one cryo particle she should be emit 4 5 particle per kqm datum per skill cast this disrupt rotation on her comp that should get enough energy if implement in official server which branch do you use grasscutter version 1 7 2 via yuukip screenshot ayakawrongparticleamount there aren t any more particle create after that the one you see be the only one there be
grasscuttersgrasscutter
bug 25 element resonance soothe water not work
Bug
describe the bug 25 element resonance soothe water not work which branch do you use grasscutter version 1 7 2 3094facb8 screenshot single hydro image image with soothe water image image additional context gc resource late from yuuki s gitlab yuuki re
grasscuttersgrasscutter
bug weapon do not provide healing or energy recharge
Bug
do you look for other closed issue that have the same problem issue about character skill not heal be solve but the weapon still don t work describe the bug weapon like the black blade and favonius lance don t work which branch do you use 1 7 2 screenshot additional context
grasscuttersgrasscutter
area trigger with character that can move by skill or passive
Bug
I m create this issue while use translation so there may be some unclear part if there be any please feel free to ask question do you look for other closed issue that have the same problem yes describe the bug normally event be trigger correctly when walk or trigger without use skill however for character like yelan ayaka mona and other who can move use their skill or passive ability there be a bug where event do not occur when enter the area by perform a special movement which branch do you use gc version 1 7 2 but it s a version that I build myself with the follow commit hash git hash d32a75e screenshot statue of the seven this screenshot be take from a distance without use any skill so it doesn t accurately reproduce the situation however if this bug occur at an unopened statue of the seven the interaction prompt box will not appear make it impossible to open image dungeon use yelan s skill the door do not open even when pass through the area where the event be trigger image if you don t use the skill yourself and stand at the place where the event be trigger the door will open image additional context this problem do not occur on the genshin impact official server gs so it be a grasscutter issue I believe this issue can be fix by make change to how the server handle character position when character be use skill to move probable cause one possible cause of the bug could be that the server doesn t treat special movement with skill as regular movement instead it might consider the starting point as where the skill be use and the end point as where the skill be terminate treat it as a teleportation event please note that this be just a speculation as I m not familiar with the source code or communication of grasscutter consider it as a hypothetical cause
grasscuttersgrasscutter
bug pc fiddler mitm 400 502
Bug
grasscuttersgrasscutter
bug jade chamber teleport move you just a bit below its floor lead to fall to death
Bug
do you look for other closed issue that have the same problem yup no other issue like this describe the bug when use either map teleport or npc teleport it teleport the player just a bit below the chamber or in the chamber which lead often to fall to ur demise which branch do you use grasscutter version 1 7 1 dev late 23 09 2023
grasscuttersgrasscutter
bug xingqiu s skill talent from ascention 1 do not heal while its suppose to since it healing be supposedly fix
Bug
do you look for other closed issue that have the same problem I do not think anyone have make an issue about that yet describe the bug while use level 40 xingqiu I notice his skill with talent hydropathic do not heal when the skill sword dissapear also for some reason they can damage tree and dissapear that way edit aquila fevonia also do not heal seem like just skill and burst heal while anything else do not which branch do you use development late update as of 19 09 2023 grasscutter 1 7 1 screenshot image image additional context the tree thing be not all that bad the main issue be with healing
grasscuttersgrasscutter
bug seal on chest elemental pillar
Bug
do you look for other closed issue that have the same problem yup no other issue like this after collect all the seelie for a chest or elemental totem to open release the seal it will not do anything also after I come back to the domain to take a screenshot everything reset make the domain annoying to open every time and after I get near it it release the seal I be guess this be smt to do with load they correctly and it only load after come to they a 2nd time edit when activate the elemental pillar it do not open the domain which branch do you use 1 7 1 git not find screenshot image image image additional context sorry I do not provite a photo of the pillar unrelease from the seal but as describe it open without get the seelie again
grasscuttersgrasscutter
bug full offline support
Bug
do you look for other closed issue that have the same problem look in discord use fiddler but unstable describe the bug full offline support just like 3 8 which branch do you use grasscutter version 1 7 1
grasscuttersgrasscutter
when enablescriptinbigworld be set to false datum drop json do not take effect
Bug
from version 1 6 0 1 7 1 when enablescriptinbigworld be set to true the change drop json can take effect when enablescriptinbigworld be set to false drop json do not take effect kill monster can not drop any item I test 1 5 0 again and it work regardless of whether it be set to false or true
grasscuttersgrasscutter
windrise element totem reward without completion
Bug
do you look for other closed issue that have the same problem ye it be not post anywhere describe the bug the element totem pillar behind windrise tree give you reward without activate cryo totem pillar which branch do you use development 1 7 1 no git find late for 15 09 2023 screenshot image talk abt this but can not show the chest and un activate cryo pillar totem additional context the order I do it in be electro pyro get chest cryo do nothin
grasscuttersgrasscutter
bug dragonspine ore can not be pick up effect when break do not apply to player dragonspine quest not work work weird
Bug
do you look for other closed issue that have the same problem I do nothing similar here pop up search many phrase dragonspine scarlet scarlet ore dragon nothing particularrly similar show up describe the bug the red ore scarlet ore in dragonspinne do not apply its effect to player upon destruction render most of dragonspine lock away on the topic of the enter dragonspine quest at first the ice rock that need the heat rock to break it be not there it just appear as I be write this but the rock be still not apply the effect which branch do you use 1 7 1 should mention local host screenshot additional context it take quite a bit for the ice object in front of frozen crimson tree to appear tho I have no idea when I be try to explore liyue so I do not check the dragonspine quest for few min
grasscuttersgrasscutter
bug use give all to occupy 100 of the cpu
Bug
when use instruction such as give all or even give weapon to add a large number of item the cpu usage increase sharply but this do not occur when test with grasscutter 1 5 1 use the same give all command gc1 7 1 require about 10 time the cpu of gc1 5 1 it may take up more if my cpu performance be well and gc1 5 1 usually take up less than 30 second after the execution be complete the cpu usage return to normal level while gc1 7 1 take about 5 minute I don t know if this be a bug but I still want to give feedback
grasscuttersgrasscutter
Enhancement
grasscuttersgrasscutter
bug the gamesession allocation verification error cause the player to appear blank or to drop out of service
Bug
2324 grasscutter in 2324 it be mention that the server could not process the request and lead to a white screen and a disconnect by compare the old version of grasscutter core I find that a judgement be delete in the new version 69c7e079248aa526252c84ae944fcd0d grasscutter gamesession determine whether decryption operation be require base on the state of the session in my understanding if the new version of grasscutter be delete the judgment will be decrypt regardless of its status will this lead to incorrect decryption as it may change through session state alternatively change in gamesession or other factor may cause inconsistency and cause player to drop or disconnect by attempt to add this judgment I have obtain the follow result 47583714 b482 4d6d 9d6a a0b21f208dff gamesession this make it impossible for any player to enter previously player who could only enter around eight player start to lose their connection and have a blank screen now none of they can enter be this cause by the inconsistency in the first gamesession allocation
grasscuttersgrasscutter
bug killall command do not work correctly
Bug
the killall command do not kill all currently load entity but instead just kill one enemy the server also do not respond with the usual kill x entity in y scene message I m play on 4 0 cultivation all in one no questing download
grasscuttersgrasscutter
bug be it normal for gc4 0dev to consume a lot of cpu
Bug
I close task and world script but it still have a high cpu memory footprint I think this be a serious memory leak cpu 4h ram 8 gb online 13 image
grasscuttersgrasscutter
4 0
Bug
4 0
grasscuttersgrasscutter
bug
Bug
do you look for other closed issue that have the same problem describe the bug which branch do you use screenshot additional context
grasscuttersgrasscutter
bug no response be receive after interact with the root after complete the domain of blessing
Bug
do you look for other closed issue that have the same problem yes describe the bug no response be receive after interact with the root after complete the domain of blessing which branch do you use grasscutter version 1 6 2 76e940bc screenshot nh after the interaction no response occur nh additional context
grasscuttersgrasscutter
gc
Enhancement
gc gc dispatch region dispatchurl ws 192 168 3 8 20012 encryptionkey bmpkcvd l5kajrbvdprdmsjodckrnv8lxp3a nzfqro dispatchkey voubzvf5metcezb hrq4otfv0bxc6n6nk dzcndyimq defaultname grasscutter logrequest none
grasscuttersgrasscutter
bug 4
Bug
2 75 4w 10 e 7000 4000 4
grasscuttersgrasscutter
bug yaoyao s elemental skill doesn t heal at all
Bug
do you look for other closed issue that have the same problem yes describe the bug yaoyao s elemental skill doesn t heal which branch do you use grasscutter 1 6 2 7cdb774b1 resource yuukip s new version till 2023 07 04 screenshot image additional context none
grasscuttersgrasscutter
feature request docker
Enhancement
be your feature request relate to a problem please describe describe the solution you d like describe alternative you ve consider additional context
grasscuttersgrasscutter
bug help command not work
Bug
use grasscutter version 1 6 1 what do I do I execute help as a player on the server what do I expect the server to do show I all command and stuff what actually happen I didn t get an answer by the server and get an error code in the grasscutter console java lang nullpointerexception can not invoke string startswith string because p be null at emu grasscutter game account haspermission account java 206 at emu grasscutter command command helpcommand lambda execute 0 helpcommand java 65 at java base java util treemap foreach treemap java 1282 at emu grasscutter command command helpcommand execute helpcommand java 62 at emu grasscutter command commandmap lambda invoke 0 commandmap java 323 at emu grasscutter command commandmap invoke commandmap java 327 at emu grasscutter game chat chatsystem tryinvokecommand chatsystem java 44 at emu grasscutter game chat chatsystem sendprivatemessage chatsystem java 165 at emu grasscutter server packet recv handlerprivatechatreq handle handlerprivatechatreq java 21 at emu grasscutter server game gameserverpackethandler handle gameserverpackethandler java 91 at emu grasscutter server game gamesession handlereceive gamesession java 215 at emu grasscutter server game gamesessionmanager 1 lambda handlereceive 0 gamesessionmanager java 72 at io netty util concurrent abstracteventexecutor runtask abstracteventexecutor java 174 at io netty channel defaulteventloop run defaulteventloop java 54 at io netty util concurrent singlethreadeventexecutor 4 run singlethreadeventexecutor java 997 at io netty util internal threadexecutormap 2 run threadexecutormap java 74 at io netty util concurrent fastthreadlocalrunnable run fastthreadlocalrunnable java 30 at java base java lang thread run thread java 833
grasscuttersgrasscutter
feature request add proxyprotocol support proxyprotocol
Enhancement
en similar to 1975 but proxyprotocol can be use in not only dispatch server but also game server that will enable reverse proxy as well as intranet penetration tool such as frp to access user ip normally helpful with host public server such as use cdn base on 4 layer reverse proxy or play with friend cn ip ip cdn ip 1975
grasscuttersgrasscutter
feature request
Enhancement
c program file mongodb server 5 0 datum
grasscuttersgrasscutter
feature request
Enhancement
c program file mongodb server 5 0 datum
grasscuttersgrasscutter
bug resource link on wiki end in 404
Bug
the link in the wiki for the resource lead to a page end in a 404 error
grasscuttersgrasscutter
bug
Bug
wp8 z72xhdjphm7b cpg122
grasscuttersgrasscutter
bug when access the status page while grasscutter be in dispatch only mode an error occur
Bug
do you look for other closed issue that have the same problem yes describe the bug when access the status server page while grasscutter be in dispatch only mode an internal server error occur with the message can not invoke emu grasscutter server game gameserver getplayer because the return value of emu grasscutter grasscutter getgameserver be null which branch do you use development screenshot additional context
grasscuttersgrasscutter
Enhancement
2 8
grasscuttersgrasscutter
bug group 133103009 suite 1 not find
Bug
group 133103009 suite 1 not find group 133315201 suite 1 not find lua call trigger fail in group 133104621 with action event group load 621053 emu grasscutter script datum scriptargs 3d204123 org luaj vm2 luaerror script 706 attempt to index a nil value at org luaj vm2 luavalue error unknown source at org luaj vm2 luavalue indexerror unknown source at org luaj vm2 luavalue gettable unknown source at org luaj vm2 luavalue get unknown source at org luaj vm2 luaclosure execute unknown source at org luaj vm2 luaclosure call unknown source at emu grasscutter script scenescriptmanager safetycall scenescriptmanager java 939 at emu grasscutter script scenescriptmanager callscriptfunc scenescriptmanager java 932 at emu grasscutter script scenescriptmanager calltrigger scenescriptmanager java 877 at emu grasscutter script scenescriptmanager handleeventfortrigger scenescriptmanager java 846 at emu grasscutter script scenescriptmanager realcallevent scenescriptmanager java 826 at emu grasscutter script scenescriptmanager lambda callevent 25 scenescriptmanager java 799 at java base java util concurrent executors runnableadapter call executor java 539 at java base java util concurrent futuretask run futuretask java 264 at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java 1136 at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java 635 at io netty util concurrent fastthreadlocalrunnable run fastthreadlocalrunnable java 30 at java base java lang thread run thread java 833
grasscuttersgrasscutter
bug random character death
Bug
post in the server s development channel by xerenix this issue with faruzan die after use elemental burst be not exclusive to faruzan herself it also happen in follow situation unleash yae miko s elemental burst if any turret be active which mean destroy turret unleash gorou s elemental burst while general s war banner skill be active which mean destroy the banner spawn new albedo s flower while there be already one active the exact moment faruzan s elemental burst duration expire the moment dazzle polyhedron disappear
grasscuttersgrasscutter
bug pyro regisvine resist and position
Bug
do you look for other closed issue that have the same problem no describe the bug the bottom always follow the player and there be no flower for cut resistance which branch do you use grasscutter version 1 4 7 faf686b8 git hash faf686b8 additional context video
grasscuttersgrasscutter
feature request md5 hot update md5 and resource link
Enhancement
resource osrelwin3 2 0 resourceurl dataurl resourceurlbak 3 2 live clientdataversion 11793813 clientsilencedataversion 11212885 clientdatamd5 remotename datum version md5 46abe9b6f66d525ba2673d1184ce6b0f filesize 4517 clientsilencedatamd5 remotename datum version md5 13d2bd86d756ce4e4757416c24afd16d filesize 410 resversionconfig version 11611027 md5 remotename re version external md5 30dc4048611d7d59bd0e47de2784e032 filesize 721480 n remotename re version medium md5 88b0bd457df1e2fe0364d899c42307a8 filesize 310613 n remotename re version stream md5 3703aaa156ecee45c7700d54d61b81bb filesize 76846 n remotename release re version external md5 4717456aa8ffd04deda62b34af30b9c5 filesize 721480 n remotename release re version medium md5 bd3b070b29c66a7f1b9003f0b1ff6046 filesize 310613 n remotename release re version stream md5 af7d219eea2baca13ba9ec5cf3cf3115 filesize 76846 n remotename base revision md5 66c91ca49ddca2f22323ddfeac761bf3 filesize 19 releasetotalsize 0 versionsuffix 8bf0cf5f3d branch 3 2 live clientversionsuffix 1bb7eba264 clientsilenceversionsuffix 766b0a2560 osrelandroid3 2 0 resourceurl dataurl resourceurlbak 3 2 live clientdataversion 11793813 clientsilencedataversion 11212885 clientdatamd5 remotename datum version md5 46abe9b6f66d525ba2673d1184ce6b0f filesize 4517 clientsilencedatamd5 remotename datum version md5 13d2bd86d756ce4e4757416c24afd16d filesize 410 resversionconfig version 11611027 md5 remotename re version external md5 bf058c1a1068dff4d3e89c827bfe1eb9 filesize 370517 n remotename re version medium md5 36a2b12558e8e8c145d3afc9bfefbd1e filesize 97798 n remotename re version stream md5 72d1f79ea2c8583e82a991a94c0d9add filesize 2232 n remotename release re version external md5 2d3e667242153b74246d939ac8d5855d filesize 370516 n remotename release re version medium md5 aa0b8e9ba8a66e4fe07a331f782e1bc8 filesize 97797 n remotename release re version stream md5 96b424c0e780d394d39b9489a2333b84 filesize 2231 n remotename base revision md5 66c91ca49ddca2f22323ddfeac761bf3 filesize 19 releasetotalsize 0 versionsuffix 8bf0cf5f3d branch 3 2 live clientversionsuffix 1bb7eba264 clientsilenceversionsuffix 766b0a2560 osrelios3 2 0 resourceurl dataurl resourceurlbak 3 2 live clientdataversion 11793813 clientsilencedataversion 11212885 clientdatamd5 remotename datum version md5 46abe9b6f66d525ba2673d1184ce6b0f filesize 4517 clientsilencedatamd5 remotename datum version md5 13d2bd86d756ce4e4757416c24afd16d filesize 410 resversionconfig version 11611739 md5 remotename re version external md5 226686ede10834ff28c17d7f9273f883 filesize 354800 n remotename re version medium md5 4f758fca34f2b99b7a2fc520267dd3b6 filesize 104467 n remotename re version stream md5 c9bcf2d648b0114b6d6491926688adf8 filesize 29347 n remotename release re version external md5 35aa1e6bcf781c887dc19bdaa9e8f880 filesize 354799 n remotename release re version medium md5 3b398b321572d5ffce0c3c0986e5b4fb filesize 104466 n remotename release re version stream md5 85d4637d468fc8e824f8ebb60928a099 filesize 29346 n remotename base revision md5 66c91ca49ddca2f22323ddfeac761bf3 filesize 19 releasetotalsize 0 versionsuffix 50a8ffbbbd branch 3 2 live clientversionsuffix 1bb7eba264 clientsilenceversionsuffix 766b0a2560 cnrelwin3 3 0 resourceurl dataurl resourceurlbak 3 3 live clientdataversion 12361027 clientsilencedataversion 12361027 clientdatamd5 remotename datum version md5 8428117fa149153f34bd42c60c1dd6d4 filesize 5147 clientsilencedatamd5 remotename datum version md5 57bc7cb7cee9bacb01bd9769758002c0 filesize 410 resversionconfig version 12335344 md5 remotename re version external md5 f11ffae51a93b47fe19a2a149824cd42 filesize 760428 r n remotename re version medium md5 815e890353c73478dce6c0effe4eb8cc filesize 311701 r n remotename re version stream md5 beabfc149c1b6502562b3d85d42fce0b filesize 77971 r n remotename release re version external md5 349d4ffe111395ace5ad0e072e146997 filesize 760428 r n remotename release re version medium md5 5d3f4646b44223d9f5329b58faa900dd filesize 311701 r n remotename release re version stream md5 623923dba28b1ff72e684b378b0e4145 filesize 77971 r n remotename base revision md5 c1ffb64bfabb5bd8cf88f0c8f6ccbd68 filesize 19 releasetotalsize 0 versionsuffix 2474549507 branch 3 3 live clientversionsuffix f6d6187d41 clientsilenceversionsuffix f6d6187d41 nextresourceurl nextresversionconfig md5 releasetotalsize versionsuffix branch osrelandroid3 3 0 resourceurl dataurl resourceurlbak 3 3 live clientdataversion 12361027 clientsilencedataversion 12361027 clientdatamd5 remotename datum version md5 8428117fa149153f34bd42c60c1dd6d4 filesize 5147 clientsilencedatamd5 remotename datum version md5 57bc7cb7cee9bacb01bd9769758002c0 filesize 410 resversionconfig version 12335344 md5 remotename re version external md5 c7beee1b7c101d7810b668b713a12136 filesize 385249 r n remotename re version medium md5 f5034d1ee2aaf948c77159db0fc7e649 filesize 95558 r n remotename re version stream md5 0c627684a40fa17f91387bd83485621d filesize 2215 r n remotename release re version external md5 f39c37574b6146bd30635a0b98f904c4 filesize 385249 r n remotename release re version medium md5 a6307a3c630c267adf1f55a0ab983610 filesize 95558 r n remotename release re version stream md5 91437b875f9e56bb6361c20c28fa27b8 filesize 2215 r n remotename base revision md5 c1ffb64bfabb5bd8cf88f0c8f6ccbd68 filesize 19 releasetotalsize 0 versionsuffix 2474549507 branch 3 3 live clientversionsuffix f6d6187d41 clientsilenceversionsuffix f6d6187d41 nextresourceurl nextresversionconfig md5 0 releasetotalsize 0 versionsuffix branch 3 3 live gc adapt the gc code by yourself to achieve hot update take the official route
grasscuttersgrasscutter
Enhancement
grasscutter resource grasscutter issue 1 2 3 9 12
grasscuttersgrasscutter
bug
Bug
grasscuttersgrasscutter
feature request docker
Enhancement
mongo docker docker docker mongo jdk1 7
grasscuttersgrasscutter
bug
Bug
grasscutter 19001 https 22102 game 443 https 22102 game access adguard yuanshen com hoyoverse com 4206 4201 grasscutter p12 can android 12 asus rog 5s gfw 18 gb ubuntu 20 04 java ver 17 build java 17 443
grasscuttersgrasscutter
Enhancement
grasscuttersgrasscutter
complete construction step linux cento
Enhancement
complete construction step linux cento if yes please send it to the mailbox mailto thank you maybe we can discuss it here
grasscuttersgrasscutter
feature request
Enhancement
grasscuttersgrasscutter
bug
Bug
3 2
grasscuttersgrasscutter
bug
Bug
the domain call of the abyss can be enter normally through the entrance of the domain but for some reason the mechanism door that should have be open have not be open screenshot qq 20230104171238 qq 20230104171336
grasscuttersgrasscutter
spawn json
Enhancement
spawn json