- เครดิต
- 5504
- ความรู้
-
- เงิน $
-
- ความดี
-
|
- if(strcmp(cmdtext,"/juti",false)){
- if(IsPlayerConnect(playerid)){
-
- //เรียงเงื่อนไข เลเวล จากมากไปน้อย ตามตัวอย่าง
- if(PlayerInfo[playerid][pLevel] >=150){
- GivePlayerMoney(playerid,20000000);
- PlayerInfo[playerid][pPoint] += 10000; // ตัวแปรที่เก็บ point
-
- }
- else if(PlayerInfo[playerid][pLevel] >=100){
- GivePlayerMoney(playerid,5000000);
- PlayerInfo[playerid][pPoint] += 3000; // ตัวแปรที่เก็บ point
-
- }
- else if(PlayerInfo[playerid][pLevel] >=70){
- GivePlayerMoney(playerid,500000);
- PlayerInfo[playerid][pPoint] += 1000; // ตัวแปรที่เก็บ point
-
- }
- else if(PlayerInfo[playerid][pLevel] >=50){
- GivePlayerMoney(playerid,150000);
- PlayerInfo[playerid][pPoint] += 500; // ตัวแปรที่เก็บ point
-
- }
- else if(PlayerInfo[playerid][pLevel] >=30){
- GivePlayerMoney(playerid,70000);
- PlayerInfo[playerid][pPoint] += 300; // ตัวแปรที่เก็บ point
-
- }
- else if(PlayerInfo[playerid][pLevel] >=10){
- GivePlayerMoney(playerid,20000);
- PlayerInfo[playerid][pPoint] += 100; // ตัวแปรที่เก็บ point
-
- }
- else{
-
- SendClientMessage(playerid,-1,"ยังไม่มีค่าประสบการณ์ในการจุติ");
- }
-
-
- }
- return 1;
- }
คัดลอกไปที่คลิปบอร์ด
นี้ตัวอย่าง code |
|