在编码方面,我是一个完全的菜鸟,你的专业人士很可能会嘲笑这是多么可悲;)。
无论如何,我正在为游戏编写脚本。我收到此错误C:\Users\Admin\Desktop\Scripts\main.c(76): error line: 76 compiler: expected identifier before '(' token.
现在我已经查看了将近 2 个小时,我也让朋友从不同的位置查看了一个小时;我们俩都不擅长编码,但我们学习缓慢。
从脚本中提取
teleport_char(GetPlayerPed(),2276.3477,72.9833,5.8128,327.0000); //Teleport yourself to x,y,z,h
while(true){//While SCO Is on
if(IS_CHAR_IN_ANY_POLICE_VEHICLE(GetPlayerPed)) && (IS_BUTTON_JUST_PRESSED(0,DPAD_DOWN)){ //If you are in a police car and press dpad down
if(!IS_CHAR_MODEL(GetPlayerPed,4111764146)){ //If you are not the cop model
GET_CAR_CHAR_IS_USING(GetPlayerPed,PoliceV); //Get your car and store handle in PoliceV
LoadModel();//Go to LoadModel Void function Line: 52
WARP_CHAR_INTO_CAR(GetPlayerPed,PoliceV){ //Once Load Model Is done Warp back into police vehicle
else{
CLEAR_PRINTS();
TERMINATE_THIS_SCRIPT();
}
}
}
}
}
}
第 76 行是 if(IS_CHAR_IN_ANY_POLICE_VEHI 希望各位高手能帮助这样的菜鸟,大家提前干杯。