跑跑卡丁车登陆时出现XCENTER ERROr E0191009

跑跑卡丁车登陆时出现XCENTER ERROr E0191009,第1张

跑跑卡丁车登陆时出现XCENTER ERROr E0191009是因为游戏文件缺失,重新在官网下载即可。

跑跑卡丁车(CrazyRacing Kartrider),是韩国NEXON公司出品的一款大型多人在线赛车竞速游戏。跑跑卡丁车首创漂移按键,且在游戏手感和数据上充分模拟物理原理,打造“全民漂移”的理念。

游戏角色延续使用了泡泡堂中的人物,角色可以驾驶卡丁车在城镇、森林、沙漠、冰河、墓地、矿山等29个主题的数百条赛道上进行游戏。

游戏发展:

2006年1月10日,跑跑卡丁车国服运营商世纪天成在中国大陆开始了免费的封闭测试运营。同年3月17日,开放公开测试,游戏服务器分电信服务器和网通服务器。同年4月14日,电信第二服务器开通。同年4月21日,游戏正式开始运营,并开放L3驾照考试。

同年5月23日,E2时代开始。同年6月20日,L3驾照考试难度下调。同年7月11日,墓地主题地图上线。同年8月15日,G3时代开始。同年9月5日,矿山主题地图上线。同年10月31日,R4时代开始。

2007年2月8日,网通第二服务器开通。同年4月26日,更新2nd Lap的“北奥行星”主题。同年6月28日,PRO时代开始,并开放L2驾照考试。同年7月26日,更新2nd Lap的“特别篇:工业革命”主题。同年9月27日,夺旗赛模式上线。同年10月4日,GP赛模式上线并首次开放。

import java.awt.Color

import java.util.*

import java.awt.*

import java.applet.*

public class Clock extends Applet implements Runnable

{

Thread timer=null

Label label

int lastxs=50,lastys=30,lastxm=50,lastym=30,lastxh=50,lastyh=30

public void init()

{

label=new Label(" ")

setBackground(Color.white)

add(label)

}

public void paint(Graphics g)

{

int xh,yh,xm,ym,xs,ys,s,m,h,xcenter,ycenter

Date rightnow=new Date()

String today=rightnow.toLocaleString()

label.setText(today)

s=rightnow.getSeconds()

m=rightnow.getMinutes()

h=rightnow.getHours()

xcenter=100

ycenter=80

xs=(int)(Math.cos(s*3.14f/30-3.14f/2)*45+xcenter)

ys=(int)(Math.sin(s*3.14f/30-3.14f/2)*45+ycenter)

xm=(int)(Math.cos(m*3.14f/30-3.14f/2)*45+xcenter)

ym=(int)(Math.sin(m*3.14f/30-3.14f/2)*45+ycenter)

xh=(int)(Math.cos((h*30+m*2)*3.14f/180-3.14f/2)*30+xcenter)

yh=(int)(Math.sin((h*30+m*2)*3.14f/180-3.14f/2)*30+ycenter)

g.setFont(new Font("TimesToman",Font.PLAIN,14))

g.setColor(Color.orange)

g.fill3DRect(xcenter-50,ycenter-50,100,100,true)

g.setColor(Color.darkGray)

g.drawString("12",xcenter-5,ycenter-37)

g.drawString("3",xcenter+40,ycenter+3)

g.drawString("6",xcenter-3,ycenter+45)

g.drawString("9",xcenter-45,ycenter+3)

g.setColor(Color.orange)

if(xs!=lastxs||ys!=lastys)

{

g.drawLine(xcenter,ycenter,lastxs,lastys)

}

if(xm!=lastxm||ym!=lastym)

{

g.drawLine(xcenter,ycenter-1,lastxm,lastym)

g.drawLine(xcenter-1,ycenter,lastxm,lastym)

}

if(xh!=lastxh||yh!=lastyh)

{

g.drawLine(xcenter,ycenter-1,lastxh,lastyh)

g.drawLine(xcenter-1,ycenter,lastxh,lastyh)

}

g.setColor(Color.red)

g.drawLine(xcenter,ycenter,xs,ys)

g.drawLine(xcenter,ycenter-1,xm,ym)

g.drawLine(xcenter-1,ycenter,xm,ym)

g.drawLine(xcenter,ycenter-1,xh,yh)

g.drawLine(xcenter-1,ycenter,xh,yh)

lastxs=xs

lastys=ys

lastxm=xm

lastym=ym

lastxh=xh

lastyh=yh

}

public void start()

{

if(timer==null)

{

timer=new Thread(this)

timer.start()

}

}

public void stop()

{

timer=null

}

public void run()

{

while(timer!=null)

{

try

{

Thread.sleep(1000)

}catch(InterruptedException ie){}

repaint()

}

timer=null

}

public void update(Graphics g)

{

paint(g)

}

}


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/469633.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-06-06
下一篇2023-06-06

发表评论

登录后才能评论

评论列表(0条)

    保存