Jump to content

VIP System ohne Funktion


Pysk

Recommended Posts


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  234
  • Reputation:   8
  • Joined:  01/19/12
  • Last Seen:  

Hallo zusammen.

Was ist da los mit dem VIP System?

Ich habe einen NPC eingebaut der einen den Account für 24 Stunden zum VIP Account macht. Leider tut er das nicht, auch wenn er es sagt.

 

Muss man das VIP System erst einschalten oder warum geht es bei mir nicht.

 

Ich habe einen Account auf gruop ID 5 gesetzt, und werde mit @who auch als VIP angeziegt. Ein test NPC sagt aber ich sei kein VIP.

Hier noch der NPC:

 

	prontera,100,100,5    script    CashToVIP    123,{
    .@cashperday = 1;
    
    mes "["+ strnpcinfo(1)+"]";
    if(#CASHPOINTS == 0){
        mes "You need Cash Points in order to buy VIP time";
        close;
    }
    
    switch(vip_status(1)){
        case 0:
            mes "You're not a VIP";
            break;
        case 1:
            mes "You are a VIP";
            break;
    }
    
    mes "You currently have "+ #CASHPOINTS +" Cash Points.";
    mes "Each VIP Day will cost you ^0000ff"+ .@cashperday +"^000000";
    next;
    
    mes "["+ strnpcinfo(1)+"]";
    if( #CASHPOINTS < .@cashperday ){
        mes "You don't have enough Cash Points to purchase VIP Days";
        close;
    } else {
        mes "Would you like to purchase/increase your VIP Days?";
        switch(select(" - Nope: - Yeah!")){
            case 1:
                break;
            case 2:
                #CASHPOINTS -= .@cashperday;
                vip_time 1440;
                dispbottom "Current Cash Points: "+ #CASHPOINTS;
                dispbottom "VIP Expires: "+ vip_status(2);
                break;
        }
        close;
    }
}
	

 

Den Rest kann man Screen entnehmen. Daher ja auch meine Frage ob man noch was einschalten muss.

screenrAthena001.jpg

screenrAthena002.jpg

screenrAthena003.jpg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  234
  • Reputation:   8
  • Joined:  01/19/12
  • Last Seen:  

Okay, ich habe es gefunden,. Es war im src deaktiviert. 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...