Jump to content
  • 0

Request Goldy Rental Item Script


Checkmate

Question


  • Group:  Members
  • Topic Count:  96
  • Topics Per Day:  0.02
  • Content Count:  554
  • Reputation:   14
  • Joined:  09/24/12
  • Last Seen:  

Olaaa....
I would like to make some request.Did anyone here still have Godly Rental Item that compatible with rAthena...
Cuz im lookin everywhere(i dont know if im missing looking for it ^ ^),and did not found any except in eAthena forum...
I would like to request this script wih :

+   goldly item rental

+   just for one day(the rental)

 

Anyone?..?
 

/oops  /oops  /oops

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

prontera,161,178,5    script    God Item Rental    806,{

    mes "[God Item Rental]";

    if(hasitem == 1) {

        mes "Hello. You already claimed your rental God items.";
        close;

    }
    else
    {
        mes "Hello "+strcharinfo(0)+"!";
        mes "I can let you use my God item set for ^008C005 day^000000! Please make sure that you have reached the required level to use these items.";
        next;
        mes "Sleipnir - ^8C0000Level 94^000000";
        mes "Megingjard - ^8C0000Level 94^000000";
        mes "Kaho Horn -  ^8C0000Level 1^000000";
        mes "Mjolnir - ^8C0000Level 94^000000";
        mes "Brisingamen - ^8C0000Level 94^000000";
        mes "Asperika - ^8C0000Level 94^000000";
        switch(select("Rent the items:Maybe later")) {
        
            case 1:
                set hasitem, 1;
                rentitem 2629,432000;
                rentitem 2630,432000;
                rentitem 2410,432000;
                rentitem 5013,432000;
                rentitem 1530,432000;
                rentitem 2541,432000;
                close;
                break;
            case 2:
                mes "OK. Maybe some other time.";
                close;
                break;
        
        }

        
        
    }

} 

 

try

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   616
  • Joined:  07/05/12
  • Last Seen:  

You can rent any item with rentitem script command

 

*rentitem <item id>,<time>;
*rentitem "<item name>",<time>;

Creates a rental item in the attached character's inventory. The item will expire
in <time> seconds and be automatically deleted. When receiving a rental item,
the character will receive a message in their chat window. The character will
also receive warning messages in their chat window before the item disappears.

This command can not be used to rent stackable items. Rental items cannot be
dropped, traded, sold to NPCs, or placed in guild storage. (i.e. trade mask 75)
Note: 'delitem' in an NPC script can still remove rental items.

 

 

Sample

prontera,150,180,5	script	rent godly	56,{

	mes "rent an godly item ?";
	next;
	if( select( "Rent", "leave" ) -1 ) close;
	
	rentitem 2629, 86400;
	mes "done";
	close;
}

Make it according your imagination

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  96
  • Topics Per Day:  0.02
  • Content Count:  554
  • Reputation:   14
  • Joined:  09/24/12
  • Last Seen:  

Wew... Nice one... Thaks all.. ^^
I just try rentitem 2629, 86400;

and it done.. ^^
Thanks You all ^ ^

 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  170
  • Reputation:   1
  • Joined:  03/26/13
  • Last Seen:  

 
prontera,150,180,5    script    rent godly    56,{

    mes "rent an godly item ?";

    next;

    if( select( "Rent", "leave" ) -1 ) close;

    

    rentitem 2629, 86400;

    mes "done";

    close;

}

how can to make my item to rent items example my proof of donation = rent item ?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10018
  • Reputation:   2369
  • Joined:  10/28/11
  • Last Seen:  

trunk/doc/script_commands.txt

*rentitem <item id>,<time>;
*rentitem "<item name>",<time>;

Creates a rental item in the attached character's inventory. The item will expire 
in <time> seconds and be automatically deleted. When receiving a rental item, 
the character will receive a message in their chat window. The character will 
also receive warning messages in their chat window before the item disappears.

This command can not be used to rent stackable items. Rental items cannot be 
dropped, traded, sold to NPCs, or placed in guild storage. (i.e. trade mask 75)
Note: 'delitem' in an NPC script can still remove rental items.

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
Answer this question...

×   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...