Raised This Month: $51 Target: $400
 12% 

BANKA


Post New Thread Reply   
 
Thread Tools Display Modes
pokemonmaster
princess milk
Join Date: Nov 2010
Location: Somewhere in this world
Old 12-07-2012 , 18:12   Re: BANKA
Reply With Quote #11

Quote:
Originally Posted by layka_LUBII View Post
Bank open orders / say
where I can insert the bank 5000$
select 1000$
select 10000$
I can select it from 5000$
insert maximum $

Thank you
I couldn't understand a word ...
__________________
اَشْهَدُ اَنْ لَّآ اِلٰهَ اِلَّا اللہُ وَحْدَه لَا شَرِيْكَ لَه وَ اَشْهَدُ اَنَّ مُحَمَّدًا عَبْدُه وَرَسُوْلُه
No longer active in AMXX. Sorry.
pokemonmaster is offline
kp3t3h
Senior Member
Join Date: Feb 2011
Old 12-08-2012 , 04:49   Re: BANKA
Reply With Quote #12

i found something, but it is in polish
PHP Code:
/* 

#############################################################

Plugin Created by Łukasz Zieliński!
Wszystkie prawa zastrzeżone!
Rozpowszechnianie tylko za moją zgodą: Gadu-Gadu: 5972861
Ostatnia modyfikacja: 20 Lipca 2010 roku. 


Info: Plugin napisany dla serwerów wszelakiego typu.. Powinien działać wszędzie
Cvary:

bank_koszt_konta - (num) Koszt konta Default: $160
bank_max - (num) max pieniędzy które można mieć na koncie Default: 100000
bank_max_wyplac - (num) max ile można wypłacic za jednym razem Default: 200
bank_wyplat_max - (num) max wypłat na mapie Default: 10
bank_loteria_sekundy - (Float) Co ile sekund można grać w loterie Default: 100.0 

############################################################

*/


#include <amxmodx>
#include <amxmisc>
#include <nvault>
#include <cstrike>
#include <ColorChat>
#define PLUGIN "Bank"
#define VERSION "2.0"
#define AUTHOR "Lukasz 'zielu' Zielinski"

new g_vault
new PlayerMoney[33], Konto[33], gral[33], wyplacil[33], Iloscs[33], dod[33], Porzyczyl[33], Kwota[999][33]
new 
kosztmaxwplacmaxwyplmaxwyplatFloat:loteria1maxrandminrandmaxporzyczflaganakupno
public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
koszt register_cvar("bank_koszt_konta""160")
    
maxwplac register_cvar("bank_max""100000")
    
maxwypl register_cvar("bank_max_wyplac""200")
    
maxwyplat register_cvar("bank_wyplat_max""10")
    
loteria1 register_cvar("bank_loteria_sekundy""100.0")
    
minrand register_cvar("bank_min_porzycz""10000")
    
maxrand register_cvar("bank_max_porzycz""50000")
    
maxporzycz register_cvar("bank_porzyczek_max""1"// Max porzyczek na jedna mape (max 999)
    
nakupno register_cvar("bank_na_flage""1"// Jeśli bank ma być na flage 1 jeśli nie 0
    
flaga register_cvar("bank_flaga_dostepu""ADMIN_LEVEL_F"// Flaga dostepu do banku ( flagi sa w pliku users.ini )
    
    
koszt get_pcvar_num(koszt)
    
maxwypl get_pcvar_num(maxwypl)
    
maxwplac get_pcvar_num(maxwplac)
    
maxwyplat get_pcvar_num(maxwyplat)
    
loteria1 get_pcvar_float(loteria1)
    
minrand get_pcvar_num(minrand)
    
maxrand get_pcvar_num(maxrand)
    
maxporzycz get_pcvar_num(maxporzycz)
    
nakupno get_pcvar_num(nakupno)
    
flaga get_pcvar_flags(flaga)
    
    
g_vault nvault_open("amx_bank")
    if(
nakupno == 1){
        
register_clcmd ("say /bank""pokaz_menu1")
    } else {
        
register_clcmd ("say /bank""pokaz_menu")
    }
    
register_clcmd("ilosc""Wplac")
    
register_clcmd("ile""Wyplac")
    
set_task(10.0"infor"0""0"b")
}

public 
infor(id){
    new 
rek random_num(1,4)
    switch(
rek)
    {
        case 
1ColorChat(idGREEN"[Bank]^x01 Aby otworzyc konto w banku wpisz /bank")
        case 
2ColorChat(idGREEN"[Bank]^x01 Na serwerze jest zainstalowany bank. Wpisz /bank aby uzyskac wiecej informacji..")
        case 
3ColorChat(idGREEN"[Bank]^x01 Brakuje ci niekiedy pieniedzy na bron? Wpisz /bank i zaloz konto!")
        case 
4ColorChat(idGREEN"[Bank]^x01 Na serwerze jest zainstalowany bank by Lukasz 'Zielu' Zielinski")
    }
}
public 
plugin_end()
{
     
nvault_close(g_vault)
     
}
public 
client_disconnect(id)
{
    
splata(id)
    
Zapisz(id)
    
PlayerMoney[id] = 0
    Konto
[id] = 0
    gral
[id] = 0
    wyplacil
[id] = 0
    Iloscs
[id] = 0
    dod
[id] = 0
    Porzyczyl
[id] = 0
    
for(new imaxporzyczi++)
    {
        
Kwota[i][id] = 0
    
}
}
public 
client_connect(id)
{
    
PlayerMoney[id] = 0
    Konto
[id] = 0
    gral
[id] = 0
    wyplacil
[id] = 0
    Iloscs
[id] = 0
    dod
[id] = 0
    Porzyczyl
[id] = 0
    
for(new imaxporzyczi++)
    {
        
Kwota[i][id] = 0
    
}
    
Wczytaj(id)

}
public 
Wczytaj(id)
{
    new 
Name[32]
    
get_user_name(idName31)
    new 
valutkey[64], valutdata[256]
    
format(valutkey63"%s-zielubank2"Name)
    
format(valutdata255"%i#%i#%i"PlayerMoney[id],Konto[id])
    
nvault_get(g_vaultvalutkeyvalutdata255)
    
replace_all(valutdata255"#"" ")
    new 
money[32], konto2[32]
    
parse(valutdatamoney31konto231)
    
PlayerMoney[id] = str_to_num(money)
    
Konto[id] = str_to_num(konto2)
    return 
PLUGIN_CONTINUE
}
public 
Zapisz(id)
{
    new 
Name[32]
    
get_user_name(idName31)
    new 
valutkey[64], valutdata[256]
    
format(valutkey63"%s-zielubank2"Name)
    
format(valutdata255"%i#%i#%i"PlayerMoney[id],Konto[id])
    
nvault_set(g_vault,valutkey,valutdata)
}
public 
pokaz_menu1(id)
{    
    if(
access(idflaga))
    {
        new 
ilosc[32]
        if(
Konto[id] == 1){
            
format(ilosc31"Bank by Zielu(Stan:\r%d\y):"PlayerMoney[id])
        } else {
            
format(ilosc31"Bank by Zielu - Brak konta:")
        }
        new 
menu menu_create(ilosc,"menu_wybor")
        if(
Konto[id] == 0)
        {
        new 
lolek[32]
        
format(lolek31"\wOtworz konto(Koszt:\r$%d\w)"koszt)
        
menu_additem(menu,lolek,"1",0)
        }
        
menu_additem(menu,"\wWplac","2",0)
        
menu_additem(menu,"\wWplac wszystko","3",0)
        
menu_additem(menu,"\wWyplac","4",0)
        
menu_additem(menu,"\wPrzelew","7",0)
        
menu_additem(menu,"\wLoteria","6",0)
        
menu_additem(menu,"\wPorzyczka","8",0)
        
menu_additem(menu,"\wInformacja","5",0)
        
menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
        
menu_display(id,menu,0)
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Musisz pierwsze wykupić konto u H@!")        
    }
}    
public 
pokaz_menu(id)
{    
        
    new 
ilosc[32]
    if(
Konto[id] == 1){
        
format(ilosc31"Bank by Zielu(Stan:\r%d\y):"PlayerMoney[id])
    } else {
        
format(ilosc31"Bank by Zielu - Brak konta:")
    }
    new 
menu menu_create(ilosc,"menu_wybor")
    if(
Konto[id] == 0)
    {
    new 
lolek[32]
    
format(lolek31"\wOtworz konto(Koszt:\r$%d\w)"koszt)
    
menu_additem(menu,lolek,"1",0)
    }
    
menu_additem(menu,"\wWplac","2",0)
    
menu_additem(menu,"\wWplac wszystko","3",0)
    
menu_additem(menu,"\wWyplac","4",0)
    
menu_additem(menu,"\wPrzelew","7",0)
    
menu_additem(menu,"\wLoteria","6",0)
    
menu_additem(menu,"\wPorzyczka","8",0)
    
menu_additem(menu,"\wInformacja","5",0)
    
menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
    
menu_display(id,menu,0)
}

public 
menu_wybor(idmenuitem)
{
    if(
item==MENU_EXIT)
    {
        
menu_destroy(menu)
        return 
PLUGIN_HANDLED
    
}
    new 
data[6], iName[64]
    new 
accesscallback
    menu_item_getinfo
(menuitemaccessdata,5iName63callback)
    new 
key str_to_num(data)
    switch(
key)
    {
        case 
1OtworzKonto(id)
        case 
2:
        { 
        
client_cmd(id"messagemode ilosc")
        
ColorChat(idGREEN"[Bank]^x01 Wpisz teraz ilosc pieniedzy ktore chcesz wplacic!")
        }
        case 
3WplacWszystko(id)
        case 
4: {
        
client_cmd(id"messagemode ile")
        
ColorChat(idGREEN"[Bank]^x01 Wpisz teraz ile pieniedzy chcesz wyplacic!")
        }
        case 
5show_motd(id"<center><i>Plugin bank napisany przez <b>Łukasz 'Zielu' Zieliński</b>. <br/>Plugny/Skrypty PHP/Grafika na zamówienie - Za darmo lub odpłatnie! GG: 5972861</i></center>")
        case 
6loteria(id)
        case 
7przelew(id)
        case 
8porzyczka(id)
        
    }
    return 
PLUGIN_CONTINUE
}


public 
OtworzKonto(id)
{
    new 
money cs_get_user_money(id)
    if(
Konto[id] == 0){
    if(
money  >= koszt)
    {
        
Konto[id] = 1
        cs_set_user_money
(idmoney -= koszt)
        new 
name[32]
        
get_user_name(idname31)
        
ColorChat(0GREEN"[Bank]^x01 Uzytkownik %s otworzyl konto w banku."name)
        
ColorChat(0GREEN"[Bank]^x01 Aby otworzyc konto w banku wpisz /bank")
        
ColorChat(idGREEN"[Bank]^x01 Gratulacje! Otworzyles konto w banku! Teraz mozesz wplacac, wyplacac Pieniadze z banku!")
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Niestac cie na otwarcie konta w banku! ( $%d )"koszt)
    }
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie mozesz drugi taz otworzyc konta bankowego!")
    }
    return 
PLUGIN_CONTINUE
}

public 
Wplac(id)
{
    if(
Konto[id] == 1)
    {
        new 
szArg[32]
        
read_args(szArgcharsmax(szArg))
        
remove_quotes(szArg)
        new 
ile str_to_num(szArg)
        
//ColorChat(id, GREEN, "[Bank:Debug]^x01 Ile = %d!", ile)
        
if(ile <= cs_get_user_money(id))
        {
            new 
lol PlayerMoney[id] + ile
            
if(lol >= maxwplac)
            {
                
ColorChat(idGREEN"[Bank]^x01 Masz za dużo pieniedzy na koncie! Dopchaliśmy do konta ile można ( MAX: $%d ) "maxwplac)
                
                new 
ileod cs_get_user_money(id)
                new 
iloscnor PlayerMoney[id] += ile
                
new polski iloscnor -= maxwplac
                cs_set_user_money
(idileod polski)
                
PlayerMoney[id] = maxwplac
                
//ColorChat(id, GREEN, "[Bank:Debug]^x01 1 end!")
            
} else {
            new 
lolek PlayerMoney[id] += ile
            PlayerMoney
[id] = lolek
            
new ileod cs_get_user_money(id)
            
cs_set_user_money(idileod ile)
            
//ColorChat(id, GREEN, "[Bank:Debug]^x01 2 end!")
            
}
            
ColorChat(idGREEN"[Bank]^x01 Wplaciles pieniadze do banku!")
            
ColorChat(idGREEN"[Bank]^x01 Suma na twoim koncie wynosi: $%d"PlayerMoney[id])        
        } else {
            
ColorChat(idGREEN"[Bank]^x01 Nie masz tylu ammopacków!")
        }
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz jeszcze konta bankowego!")
    }
    return 
PLUGIN_HANDLED
}

public 
WplacWszystko(id)
{
    if(
Konto[id] == 1)
    {
        new 
money cs_get_user_money(id)
        if(
money <= 0)
        {
            
ColorChat(idGREEN"[Bank]^x01 Nie masz nie masz pieniedzy!")
        } else {
            
                new 
loleks PlayerMoney[id] + money
                
if(loleks >= maxwplac){
                    
ColorChat(idGREEN"[Bank]^x01 Masz za dużo pieniedzy na koncie! ( MAX: $%d ) "maxwplac)
                    
PlayerMoney[id] = maxwplac
                    
//ColorChat(id, GREEN, "[Bank:Debug]^x01 1 end!")
                
} else {
                new 
lol PlayerMoney[id] + money
                
if(lol >= maxwplac){
                    
PlayerMoney[id] = money
                    cs_set_user_money
(id0)
                    
//ColorChat(id, GREEN, "[Bank:Debug]^x01 2 end!")
                
} else {            
                    
PlayerMoney[id] += money
                    cs_set_user_money
(id0)
                    
//ColorChat(id, GREEN, "[Bank:Debug]^x01 3 end!")
                
}
                
                
ColorChat(idGREEN"[Bank]^x01 Wplaciles wszystkie pieniadze!")
                
ColorChat(idGREEN"[Bank]^x01 Suma na twoim koncie wynosi: %d"PlayerMoney[id])
                }
                
//wyplacil[id] = 1            
        
}
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz jeszcze konta bankowego!")
    }
    return 
PLUGIN_HANDLED
}

public 
Wyplac(id)
{
    if(
Konto[id] == 1)
    {
        if(
wyplacil[id] == maxwyplat)
        {
            new 
szArg[32];
            
read_args(szArgcharsmax(szArg))
            
remove_quotes(szArg)
            new 
ile str_to_num(szArg)
            if(
ile >= 1)
            {
                if(
ile <= PlayerMoney[id])
                {
                    if(
ile <= maxwypl)
                    {
                        
                        new 
money cs_get_user_money(id)
                        
cs_set_user_money(idmoney ile)
                        
PlayerMoney[id] -= ile
                        ColorChat
(idGREEN"[Bank]^x01 Wyplaciles pieniadze z konta!")
                        
ColorChat(idGREEN"[Bank]^x01 Suma na twoim koncie wynosi: %d"PlayerMoney[id])
                    } else {
                        
ColorChat(idGREEN"[Bank]^x01 Nie mozesz wyplacic za jednym razem wiecej niz $%d"maxwypl)
                    }
                    
                } else {
                    
ColorChat(idGREEN"[Bank]^x01 Nie masz tylu pieniedzy w banku!")
                }
            } else {
                
ColorChat(idGREEN"[Bank]^x01 Musisz wpisac liczbe wieksza od zera!")
            }
        } else {
            
ColorChat(idRED"[Bank]^x01 Juz korzystales z tej opcji na tej mapie! HeadAdministrator ustawil max wyplat na %d"maxwyplat)
        }
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz jeszcze konta bankowego!")
    }
    return 
PLUGIN_HANDLED
}

public 
loteria(id)
{
    if(
gral[id] == 0)
    {
        if(
Konto[id] == 1)
        {
            
            new 
money cs_get_user_money(id)
            
cs_set_user_money(idmoney 100)
            new 
los random_num(0,1)
            if(
los == 1)
            {
                new 
rand random_num(1002000)
                
ColorChat(idGREEN"[Bank]^x01 Twoj los wygrywa! Wartosc twojego losa wynosi $%d! Gratuluje!"rand)
                new 
money cs_get_user_money(id)
                
                
cs_set_user_money(idmoney rand)
            } else {
                
ColorChat(idGREEN"[Bank]^x01 Niestety, ale twoj los nie wygrywa zadnej nagrody.. Sprobuj ponownie za 120 sekund!")
            }
            
gral[id] = 1
            set_task
(loteria1"koniec"1,_0"a"1)
        } else {
            
ColorChat(idGREEN"[Bank]^x01 Nie masz jeszcze konta bankowego!")
        }
    } else {
        new 
fl[32]
        
float_to_str(loteria1fl31)
        
ColorChat(idGREEN"[Bank]^x01 Przed kupieniem nastepnego losu musisz poczekac %s sekund!"fl)
    }
    return 
PLUGIN_HANDLED
}

public 
koniec(id)
{
    if(
gral[id] == 1)
    {
        
gral[id] = 0
        
new fl[32]
        
float_to_str(loteria1fl31)
        
ColorChat(idGREEN"[Bank]^x01 Uplynelo %s sekund mozesz grac znow w loterii!"fl)
    } 
        
}

public 
przelew(id)
{
    if(
Konto[id] == 1)
    {
        new 
ilosc[32]
        if(
dod[id] == 0)
        {
            
Iloscs[id] = 0
        
}
        
format(ilosc31"Daje: %d"Iloscs[id])
        new 
menu menu_create("Kwota ( kilknij aby zwiekszyc ):""dalej2")
        
menu_additem(menuilosc"1"0)
        
menu_additem(menu"\rWybierz odbiorce""2"0)
        
//menu_additem(menu, "\rSplac", "5", 0)
        
menu_additem(menu"Anuluj""3"0)
        
menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
        
menu_display(id,menu,0)
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz jeszcze konta bankowego!")
    }
    return 
PLUGIN_HANDLED
}

public 
dalej2(idmenuitem )
{
    if(
item==MENU_EXIT)
    {
        
menu_destroy(menu)
        
Iloscs[id] = 0
        dod
[id] = 0
        
return PLUGIN_HANDLED
    
}
    new 
data[6], iName[64]
    new 
accesscallback
    menu_item_getinfo
(menuitemaccessdata,5iName63callback)
    new 
key str_to_num(data)
    switch(
key)
    {
        case 
:
        {
            
Iloscs[id] += 10
            dod
[id] = 1
            przelew
(id)
        }
        case 
2:    dalej3(id)
        case 
3:
        {
            
Iloscs[id] = 0
            dod
[id] = 0
            set_hudmessage
(02550, -1.00.306.04.0)
            
show_hudmessage(id"Anulowales!")
        }
    }
    return 
PLUGIN_HANDLED


public 
dalej3(id)
{
    
    new 
menu menu_create("Odbiorca:""dalej4")
    
//menu_additem(menu, "Wybierz odbiorce:", "1", 0)    
    //new num1[32], num
    //(num1, num)
    
for(new 1iget_maxplayers();i++)
    {
        new 
name[32]
        
get_user_name(iname31)
        new 
formats[32]
        
format(formats31"%d"i)
        
menu_additem(menunameformats0)
    }
    
menu_additem(menu"\rAnuluj""34"0)
    
menu_setprop(menu,MPROP_EXIT,MEXIT_ALL)
    
menu_display(id,menu,0)
    return 
PLUGIN_HANDLED
}

public 
dalej4(idmenuitem)
{
    if(
item==MENU_EXIT)
    {
        
menu_destroy(menu)
        
//Iloscs[id] = 0
        //dod[id] = 0
        
return PLUGIN_HANDLED
    
}
    new 
data[6], iName[64]
    new 
accesscallback
    menu_item_getinfo
(menuitemaccessdata,5iName63callback)
    new 
key str_to_num(data)
    for(new 
1get_maxplayers(); i++)
    {
        if(
key == ipodaruj(idi)
        
    }
    if(
key == 34)
    {
        
pokaz_menu(id)
        
set_hudmessage(02550, -1.00.306.04.0)
        
show_hudmessage(id"Anulowales!")
    }
    return 
PLUGIN_HANDLED
}

public 
podaruj(idi)
{

    if(
Konto[id] == 1)
    {
        if(
Konto[i] == 1)
        {
            if(
PlayerMoney[id] >= Iloscs[id])
            {
                if(
Iloscs[id] >= 1)
                {
                    if(
!= id)
                    {
                        
PlayerMoney[id] -= Iloscs[id]
                        
PlayerMoney[i] += Iloscs[id]
                        new 
name1[32]
                        
get_user_name(iname131)
                        new 
name2[32]
                        
get_user_name(idname231)
                        
set_hudmessage(02550, -1.0, -1.0)
                        
show_hudmessage(id"Wyslales $%d graczowi %s"Iloscs[id], name1)
                        
set_hudmessage(02550, -1.0, -1.0)
                        
show_hudmessage(i"Otrzymales $%d od %s"Iloscs[id], name2)
                        
ColorChat(idGREEN"[Bank]^x01 Wyslales $%d graczowi %s"Iloscs[id], name1)
                        
ColorChat(iGREEN"[Bank]^x01 Otrzymales $%d od %s"Iloscs[id], name2)
                    } else {
                        
ColorChat(idGREEN"[Bank]^x01 Nie mozesz wysylac sam sobie!")
                    }
                } else {
                    
ColorChat(idGREEN"[Bank]^x01 Musisz wybrac wartosc wieksza od 0!")
                }
            } else {
                
ColorChat(idGREEN"[Bank]^x01 Nie masz tylu pieniedzy!")
            }
        } else {
            
ColorChat(idGREEN"[Bank]^x01 Ten grasz nie ma konta bankowego!")
        }
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz konta bankowego!")
    }
    return 
PLUGIN_HANDLED
}

public 
porzyczka(id)
{
    if(
Konto[id] == 1)
    {
        if(
Porzyczyl[id] != maxporzycz)
        {
            new 
rand random_num(minrand,maxrand)
            
PlayerMoney[id] += rand
            
new bylo;
            
set_hudmessage(02550, -1.0, -1.0)
            
show_hudmessage(id"Otrzymales porzyczke - splata: nastepne wejscie na serwer..")
            
ColorChat(idGREEN"[Bank]^x01 Bank uznal ci porzyczke wyskosci $%d! Kwota zostanie splacona automatycznie przy nastepnej wizycie na serwerze!",rand)
            for(new 
imaxporzyczi++)
            {
                if(
bylo == 0){
                if(
Porzyczyl[id] != iKwota[i][id] = rand;
                
bylo 1
            
}
            }
            
Porzyczyl[id] += 1
        
} else {
            
ColorChat(idGREEN"[Bank]^x01 Bank przyznal ci porzyczke. Musisz splacic pierwsze poprzednie!")
        }
    } else {
        
ColorChat(idGREEN"[Bank]^x01 Nie masz konta bankwego!")
    }
    return 
PLUGIN_HANDLED
}

public 
splata(id)
{
    if(
Konto[id] == 1)
    {
        for(new 
imaxporzyczi++)
        {
            if(
Porzyczyl[id] == iPlayerMoney[id] -= Kwota[i][id]; Kwota[i][id] = 0;
        }
    }
    return 
PLUGIN_HANDLED

Attached Files
File Type: sma Get Plugin or Get Source (amx_bank.sma - 102 views - 16.6 KB)
File Type: inc colorchat.inc (2.5 KB, 72 views)
__________________
need help with the following
no.1, no.2, no.3, no.4 no.5

Last edited by kp3t3h; 12-08-2012 at 16:46.
kp3t3h is offline
layka_LUBII
Senior Member
Join Date: Jul 2012
Old 12-08-2012 , 13:26   Re: BANKA
Reply With Quote #13

please send to colorchat
layka_LUBII is offline
Torge
Veteran Member
Join Date: Oct 2011
Old 12-08-2012 , 13:43   Re: BANKA
Reply With Quote #14

Or just type "colorchat" in google and be happy.
Torge is offline
kp3t3h
Senior Member
Join Date: Feb 2011
Old 12-08-2012 , 16:47   Re: BANKA
Reply With Quote #15

Quote:
Originally Posted by layka_LUBII View Post
please send to colorchat
colorchat attached
__________________
need help with the following
no.1, no.2, no.3, no.4 no.5
kp3t3h is offline
layka_LUBII
Senior Member
Join Date: Jul 2012
Old 12-09-2012 , 07:05   Re: BANKA
Reply With Quote #16

This is bad because I want the bank to make money saved but always in the name of STEAM ID

PLEASE

where I can insert the bank 5000$
select 1000$
select 10000$
I can select it from 5000$
insert maximum $

I need to bank on the FURIEN MOD

Last edited by layka_LUBII; 12-09-2012 at 07:07.
layka_LUBII is offline
Mrki_Drakula
Senior Member
Join Date: Jun 2011
Location: Serbia
Old 12-10-2012 , 14:23   Re: BANKA
Reply With Quote #17

It think this bank does have menu like this:

- Check balance
- Withdraw $1000
- Withdraw $5000
- Withdraw all
- Deposit $1000
- Deposit $5000
- Deposit all

Quote:
always in the name of STEAM ID
Do you want it to be saved to Steam id or the player name?

Also, does player have to register an account in bank or?
__________________
-----------------------------------------------
Best regards,
David Snajder (aka Crysis)
Mrki_Drakula is offline
Send a message via MSN to Mrki_Drakula Send a message via Skype™ to Mrki_Drakula
layka_LUBII
Senior Member
Join Date: Jul 2012
Old 12-10-2012 , 14:41   Re: BANKA
Reply With Quote #18

BANK MENU

- Check balance
- Withdraw $1000
- Withdraw $5000
- Withdraw all
- Deposit $1000
- Deposit $5000
- Deposit all

Do you want it to be saved to Steam id or the player name? YES

Also, does player have to register an account in bank or? YES

PLEASE BANK MENU
layka_LUBII is offline
Old 12-11-2012, 10:29
layka_LUBII
This message has been deleted by YamiKaitou. Reason: wait 14 days before you bump
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 22:41.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode