Jump to content

XenaNyx

Members
  • Posts

    131
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. XenaNyx's post in OnBuyItem not work when i call shop with cashshop? was marked as the answer   
    Already know, just edit some src because server not support for cashshop
  2. XenaNyx's post in Buffer NPC with Delay was marked as the answer   
    prontera,100,100,4 script DelayBuff 100,{ if ( Delay_Heal > gettimetick(2) ) goto deley; percentheal 100,100; skilleffect 34,0; sc_start SC_BLESSING,1800000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,1800000,10; percentheal 100,100; set Delay_Heal,gettimetick(2)+10; end; deley: dispbottom "Wait 10 mins"; end; }
  3. XenaNyx's post in Request Cashpoint Transfer Player to Player was marked as the answer   
    - script CashExchange 478,{ mes "[ ^336699Cash Exchanger^000000 ]"; mes "Exchange Cash Coint -> Cash Point"; mes "And Cashpoint -> Cash Coin"; next; menu "- Cash Point-> Cash Coin",L_Cash, "- Cash Coin -> Cash Point",L_CashCoin, "- Nothing",L_No; L_Cash: mes "[ ^336699Cash Exchanger^000000 ]"; mes "You have Cash points ^ff0000"+#CASHPOINTS+"^000000 p."; mes "Cash Coin 2ea : 1 Cash Point"; mes "How many do you want to exchange?"; set @camount,0; input @camount; if (@camount < 0) goto L_NoCash; if (#cashpoints < @camount) goto L_NoCash; set #cashpoints,(#cashpoints - (1* @camount)); getitem 29130,2*@camount; dispbottom "Now you have Cash points "+#CASHPOINTS+" p."; close; L_NoCash: mes "[ ^336699Cash Exchanger^000000 ]"; mes "^336699=================^000000"; mes "You have ^ff0000Cash Point^000000 not enough."; close; L_CashCoin: mes "[ ^336699Cash Exchanger^000000 ]"; mes "Now You have Cash points ^ff0000"+#CASHPOINTS+"^000000 p."; mes "1 Cash Point = Cash Coin 2ea"; mes "How many do you want to exchange?"; set @pamount,0; input @pamount; if (@pamount < 0) goto L_NoCashCoin; if (countitem(29130) < 2*@pamount) goto L_NoCashCoin; set #cashpoints,(#cashpoints + (1* @pamount)); delitem 29130,2*@pamount; dispbottom "Now You have Cash points "+#CASHPOINTS+" p."; close; L_NoCashCoin: mes "^336699=================^000000"; mes "You have ^ff0000Cash Coin^000000 not enough."; close; L_No: mes "[ ^336699Server Exchanger^000000 ]"; mes "Bye"; close; OnInit: waitingroom "Cash Exchange",0; end; }
  4. XenaNyx's post in Request StargameCP 4.6.4 VoteForPoint NPC was marked as the answer   
    http://www.4shared.com/rar/3v_56c7O/sgcp464r6full.html
  5. XenaNyx's post in Reins of Mount Rent was marked as the answer   
    before svn update i fix like this

    - script DelNewMount -1,{ OnPCLogoutEvent: if( ismounting() ) { setmounting();//This removes the user mount } end; }
×
×
  • Create New...