原始传奇-操作技巧:如何切换屏幕并持续打怪!
更新时间:2024-02-10 03:33:13
在原始传奇手游中,要同时切换屏幕并持续进行打怪,您需要掌握一些实用的操作技巧。下面将介绍一种可以帮助您解决这个问题的方法。
怎么切换屏幕还能打怪
```javascript
function switchscreen(screenid) {
怎么切换屏幕还能打怪
document.getelementbyid("screen1").style.display = "none";
document.getelementbyid("screen2").style.display = "none";
document.getelementbyid("screen3").style.display = "none";
// 根据屏幕id显示对应的屏幕
document.getelementbyid("screen" + screenid).style.display = "block";
attackmonsters(screenid);
function attackmonsters(screenid) {
怎么切换屏幕还能打怪
// 在这里编写打怪逻辑
// 根据屏幕id执行不同的打怪操作
在switchscreen函数内部,我们还调用了attackmonsters函数,用于执行打怪操作。您可以根据不同的屏幕id编写不同的打怪逻辑,以满足您的需求。