Register for your free account! | Forgot your password?

You last visited: Today at 04:41

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Sammelthread] kleinere Releases

Discussion on [Sammelthread] kleinere Releases within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Closed Thread
 
Old 01/29/2014, 15:02   #526
 
nOa#'s Avatar
 
elite*gold: 0
Join Date: Sep 2011
Posts: 188
Received Thanks: 98
[Quest]Level Item

Hier mal eine kleine Quest von mir, welche bewirkt, dass ihr euch ein bestimmtes Level aussuchen könnt. Das Item müsst ihr selbst eintragen und den Typ in der DB auf 18 setzten.


Bei Fragen eine PN schreiben.

Kind Regarts
nOa/KDT
nOa# is offline  
Old 01/29/2014, 15:27   #527
 
Chikyou's Avatar
 
elite*gold: 0
Join Date: Oct 2012
Posts: 114
Received Thanks: 72
Quote:
Originally Posted by 123Crusher123 View Post
Hier mal eine kleine Quest von mir, welche bewirkt, dass ihr euch ein bestimmtes Level aussuchen könnt. Das Item müsst ihr selbst eintragen und den Typ in der DB auf 18 setzten.


Bei Fragen eine PN schreiben.

Kind Regarts
nOa/KDT
Hey! Your quest have some errors ("say_titel", "item_remove()").

You can also do it by this way:
Code:
quest levelitem begin
	state start begin
		when ITEM.use begin  --Als ITEM eure Item VNUM eintragen
			say_title("Erfahrungs Item")
			say("")
			say("Mit diesem Item kannst du dir aussuchen,")
			say("welches Level dein Charakter haben soll.")
			say("")
			local s = select("30", "55", "75", "90", "105", "Abbrechen")
			if s ~= 6 then
				local lev = {30, 55, 75, 90, 105}
				pc.set_level(lv[s])
				item.remove()
			end
		end
	end
end
Chikyou is offline  
Thanks
3 Users
Old 01/31/2014, 00:40   #528
 
.Sanii's Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 353
Received Thanks: 621
Quote:
Originally Posted by Chikyou View Post
Hey! Your quest have some errors ("say_titel", "item_remove()").

You can also do it by this way:
Code:
quest levelitem begin
	state start begin
		when ITEM.use begin  --Als ITEM eure Item VNUM eintragen
			say_title("Erfahrungs Item")
			say("")
			say("Mit diesem Item kannst du dir aussuchen,")
			say("welches Level dein Charakter haben soll.")
			say("")
			local s = select("30", "55", "75", "90", "105", "Abbrechen")
			if s ~= 6 then
				local lev = {30, 55, 75, 90, 105}
				pc.set_level(lv[s])
				item.remove()
			end
		end
	end
end
Or do it with input

Code:
quest levelitem begin
	state start begin
		when ITEM.use begin  --Als ITEM eure Item VNUM eintragen
			say_title("Erfahrungs Item")
			say("")
			say("Mit diesem Item kannst du dir aussuchen,")
			say("welches Level dein Charakter haben soll.")
			say("")
			local s = tonumber(input())
                        if s != nil or < 1 then
				pc.set_level(s)
				item.remove()
			end
		end
	end
end
.Sanii is offline  
Thanks
1 User
Old 01/31/2014, 07:20   #529

 
elite*gold: 0
Join Date: Mar 2013
Posts: 2,449
Received Thanks: 6,448
Quote:
Originally Posted by .Nibori View Post
Or do it with input

Code:
quest levelitem begin
	state start begin
		when ITEM.use begin  --Als ITEM eure Item VNUM eintragen
			say_title("Erfahrungs Item")
			say("")
			say("Mit diesem Item kannst du dir aussuchen,")
			say("welches Level dein Charakter haben soll.")
			say("")
			local s = tonumber(input())
                        if s != nil or < 1 then
				pc.set_level(s)
				item.remove()
			end
		end
	end
end
Muss aber so sein

Code:
quest levelitem begin
	state start begin
		when ITEM.use begin  --Als ITEM eure Item VNUM eintragen
			say_title("Erfahrungs Item")
			say("")
			say("Mit diesem Item kannst du dir aussuchen,")
			say("welches Level dein Charakter haben soll.")
			say("")
			local s = tonumber(input())
            if s != nil or s > 1 then
				pc.set_level(s)
				item.remove()
			end
		end
	end
end
Lord iRemix is offline  
Thanks
3 Users
Old 01/31/2014, 13:27   #530

 
Ocelot2606's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 4,086
Received Thanks: 3,786
DE hat mal wieder 1 neues Kostüm und neue Haare rausgebracht

Im folgenden Link findet ihr alles was ihr braucht ebenso ist ein How To dabei das was ihr 1:1 nachmachen könnt falls ihr die 34k oder 40k nutzt und mit der dump_proto.exe umgehen könnt



Viel Spass
Ocelot2606 is offline  
Thanks
9 Users
Old 01/31/2014, 13:51   #531
 
TheRzR's Avatar
 
elite*gold: 4
Join Date: Apr 2009
Posts: 1,524
Received Thanks: 603
Dynamic Motd, nicht wirklich was damit zutun aber hilft dem ein oder anderem Admin...

Code:
#!/bin/bash
#Netzwerk
NIC=eth0
NICIN=`ifconfig $NIC | grep RX | grep bytes | awk '{print $2}' | sed 's/bytes://'`
NICIN=$(( $NICIN / 1024 / 1024 ))
NICOUT=`ifconfig $NIC | grep RX | grep bytes | awk '{print $6}' | sed 's/bytes://'`
NICOUT=$(( $NICOUT / 1024 /1024 ))
#System
CPU=`cat /proc/cpuinfo | grep -m 1 -w 'model name' | awk -F: '{print $2}'`
IP=`ifconfig | grep -A 1 'eth0' | tail -1 | cut -d ':' -f 2 | cut -d ' ' -f 1`
#Ram in MB berechnen
MEMF=`cat /proc/meminfo | grep MemFree | awk {'print $2'}`
MEMF=$(( $MEMF / 1024 ))
MEMT=`cat /proc/meminfo | grep MemTotal | awk {'print $2'}`
MEMT=$(( $MEMT / 1024 ))
#Festplatten
SDAT=`df -h | grep -E '^/dev/sda1' | awk '{ print $2 }' | awk -F '.' '{ print $1 }'`
SDAF=`df -h | grep -E '^/dev/sda1' | awk '{ print $4 }' | awk -F '.' '{ print $1 }'`
echo "
*************************************************
*               System
* Hostname....= `hostname`
* IP..........= $IP
* Kernel......= `uname -r`
* CPU.........=$CPU
* RAM.........= $MEMF MB (Free) / $MEMT MB (Total)
* Prozesse....= `ps ax | wc -l | tr -d " "`
*************************************************
*               Festplatten
* /..............= $SDAF (Free) / $SDAT (Total)
*************************************************
*               Traffic
* $NIC........= $NICIN MB (IN) / $NICOUT MB (OUT)
*************************************************"
in ne datei schreib und in crontab einfügen:
crontab -e

*/5 * * * * sh /root/script.sh > /etc/motd
TheRzR is offline  
Thanks
6 Users
Old 02/01/2014, 01:00   #532

 
elite*gold: 150
The Black Market: 147/0/0
Join Date: Jan 2014
Posts: 11,338
Received Thanks: 3,780
Perfekte close.sh

Sie schließt direkt alle Cores die laufen.
PHP Code:
#!/bin/sh
killall game
killall db
echo "done" 
Shigatu is offline  
Thanks
2 Users
Old 02/03/2014, 18:51   #533
 
KyrieAnn's Avatar
 
elite*gold: 0
Join Date: Oct 2011
Posts: 69
Received Thanks: 138
Lifting system server statistics.

Please do not remove header.

PHP Code:
--[[
    
This quest was written by KyrieAnn™ for Pandemonia Polska and ElitePVPs.
    
All rights reserved
    Lifting system server statistics
.
    
Please do not remove this header.
--]]

quest gm_exp_eng begin -- quest name
    state start begin 
-- new start state

--[[        
        function 
isAdmin()
            if 
pc.get_name() == "NICK of GA 1" or pc.get_name() == "NICK of GA 2" then
                
return true
            
else
                return 
false
            end
        end
--]]

--[[
        function 
isMaster()
            if 
pc.get_name() == "NICK of GM 1" or pc.get_name() == "NICK of GM 2" then
                
return true
            
else
                return 
false
            end
        end
--]]

--[[
    If 
you have not entered in w questlib.lua then:
        
when letter with gm_exp.isAdmin() or gm_exp.isMaster() begin -- If it is Administator or Game Master from function list:
    else:
--]]

        
when letter with pc.isAdmin() or pc.isMaster() begin -- If it is Administator or Game Master from function list:
            
send_letter("<GM>Event - Server statistics") -- Name of the letter
        end

        when button 
or info with pc.isAdmin() or pc.isMaster() begin -- when letter use
            
local m_nick pc.get_name() -- Shortcut Name
            local m_sex 
pc.get_sex() -- Shortcut Sex

            say_size
(350,380) -- Resolution
            say_title
("Information:") -- Title
            
if m_sex == 0 then -- If Male
                say
("Hello "..m_nick.." you old fart.") -- Contents
            
else -- If Female
                say
("Hello "..m_nick.." you sweety lady!") -- Contents
            end
            say
("Now you can choose the type ") -- Contents
            say
("and duration of server bonuses.") -- Contents
            say
("You can choose a preset list") -- Contents
            say
("or enter a value manually.") -- Contents
            wait
() -- Space
            say_size
(350,380) -- Resolution
            say_title
("Information:") -- Title
            say
("What do you choose?") -- Contents
            say
("")

            
local sel select("A List","Initiation")-- Selection

            
if sel == 1 then -- List
                
say_size(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("")

            
local a select("25%","50%","100%","I'm going for a beer.")-- Selection

                
if == 4 then -- If 4 then:
                    
say_title("Information:") -- Title
                    say
("Cheers "..m_nick..".") -- Contents
                end

                
if == 1 then -- If 1 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 25 48")-- Chat command
                    command
("priv_empire 0 4 25 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 25% to 48h.") -- Notification
                end

                
if == 2 then -- If 2 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 50 48")-- Chat command
                    command
("priv_empire 0 4 50 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 50% to 48h.") -- Notification
                end

                
if == 3 then -- If 3 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 100 48")-- Chat command
                    command
("priv_empire 0 4 100 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 100% to 48h.") -- Notification
                end
            end

            
if sel == 2 then -- Initiation
                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now the Kingdom, which is to receive") -- Contents
                say
("bonus, remembering that:") -- Contents
                say_reward
("0 - All Kingdoms") -- Prompt
                say_reward
("1 - Shinsoo") -- Prompt
                say_reward
("2 - Chunjo") -- Prompt
                say_reward
("3 - Jinno") -- Prompt
                say
("")

                
local m_krolestwo tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Which bonus you want to enable?") -- Contents
                say_reward
("1 - The chance to drop items.") -- Prompt
                say_reward
("2 - The chance to drop yang.") -- Prompt
                say_reward
("3 - The chance to drop premium yang") -- Prompt
                say_reward
("4 - More experience.") -- Prompt
                say
("")

                
local m_bonus tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now percent bonus,") -- Contents
                say
("remembering that") -- Contents
                say_reward
("entered number is the percentage.") -- Prompt
                say_reward
("For example, typing 1 is one percent.") -- Prompt
                say_reward
("!!Caution!!") -- Prompt
                say_reward
("The maximum value is 200!") -- Prompt
                say
("")

                
local m_procent tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now the duration of the bonus,") -- Contents
                say
("remembering that") -- Contents
                say_reward
("entered number is the hour.") -- Prompt
                say_reward
("For example, typing 1 is one hour.") -- Prompt
                say_reward
("!!Caution!!") -- Prompt
                say_reward
("The maximum value is 200!") -- Prompt
                say
("")

                
local m_czas tonumber(input()) -- enter the number
                local m_bonus_1 
= ({
                    [
1] =  "increase drop items",
                    [
2] =  "increase drop yang",
                    [
3] =  "increase drop premium yang",
                    [
4] =  "increase exp",
                })[
m_bonus] -- Prompt/Text input

                local m_krolestwo_1 
= ({
                    [
0] =  "all,",
                    [
1] =  "Shinsoo,",
                    [
2] =  "Chunjo,",
                    [
3] =  "Jinoo,",
                })[
m_krolestwo] -- Prompt/Text input

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("So, you wanna "..m_bonus_1.." for "..m_krolestwo_1.."") -- Contents
                say
("by "..m_bonus.."%, to "..m_czas.." hour(s).") -- Contents
                say
("Is it correct "..m_nick.."?") -- Contents

                local c 
select("Yes","No")-- Selection

                
if == 1 then
                    say_title
("Information:") -- Title
                    say
("I set bonus.") -- Contents
                    notice_all
(m_nick.." "..m_bonus_1) -- Notification
                    notice_all
("for "..m_krolestwo_1.." by "..m_bonus.."%, to "..m_czas.." godzin.") -- Notification
                    
                    command
("priv_empire "..m_krolestwo.." "..m_bonus.." "..m_procent.." "..m_czas.."")-- Chat command
                end

                
if == 2 then
                    say_title
("Information:") -- Title
                    say
("Bye "..m_nick..".") -- Contents
                end
            end
        end
    end
end 
./qc gm_exp_eng.lua
Attached Files
File Type: rar quest.rar (1.7 KB, 16 views)
KyrieAnn is offline  
Thanks
1 User
Old 02/03/2014, 22:59   #534

 
elite*gold: 0
Join Date: Mar 2013
Posts: 2,449
Received Thanks: 6,448
Quote:
Originally Posted by KyrieAnn View Post
Please do not remove header.

PHP Code:
--[[
    
This quest was written by KyrieAnn™ for Pandemonia Polska and ElitePVPs.
    
All rights reserved
    Lifting system server statistics
.
    
Please do not remove this header.
--]]

quest gm_exp_eng begin -- quest name
    state start begin 
-- new start state

--[[        
        function 
isAdmin()
            if 
pc.get_name() == "NICK of GA 1" or pc.get_name() == "NICK of GA 2" then
                
return true
            
else
                return 
false
            end
        end
--]]

--[[
        function 
isMaster()
            if 
pc.get_name() == "NICK of GM 1" or pc.get_name() == "NICK of GM 2" then
                
return true
            
else
                return 
false
            end
        end
--]]

--[[
    If 
you have not entered in w questlib.lua then:
        
when letter with gm_exp.isAdmin() or gm_exp.isMaster() begin -- If it is Administator or Game Master from function list:
    else:
--]]

        
when letter with pc.isAdmin() or pc.isMaster() begin -- If it is Administator or Game Master from function list:
            
send_letter("<GM>Event - Server statistics") -- Name of the letter
        end

        when button 
or info with pc.isAdmin() or pc.isMaster() begin -- when letter use
            
local m_nick pc.get_name() -- Shortcut Name
            local m_sex 
pc.get_sex() -- Shortcut Sex

            say_size
(350,380) -- Resolution
            say_title
("Information:") -- Title
            
if m_sex == 0 then -- If Male
                say
("Hello "..m_nick.." you old fart.") -- Contents
            
else -- If Female
                say
("Hello "..m_nick.." you sweety lady!") -- Contents
            end
            say
("Now you can choose the type ") -- Contents
            say
("and duration of server bonuses.") -- Contents
            say
("You can choose a preset list") -- Contents
            say
("or enter a value manually.") -- Contents
            wait
() -- Space
            say_size
(350,380) -- Resolution
            say_title
("Information:") -- Title
            say
("What do you choose?") -- Contents
            say
("")

            
local sel select("A List","Initiation")-- Selection

            
if sel == 1 then -- List
                
say_size(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("")

            
local a select("25%","50%","100%","I'm going for a beer.")-- Selection

                
if == 4 then -- If 4 then:
                    
say_title("Information:") -- Title
                    say
("Cheers "..m_nick..".") -- Contents
                end

                
if == 1 then -- If 1 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 25 48")-- Chat command
                    command
("priv_empire 0 4 25 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 25% to 48h.") -- Notification
                end

                
if == 2 then -- If 2 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 50 48")-- Chat command
                    command
("priv_empire 0 4 50 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 50% to 48h.") -- Notification
                end

                
if == 3 then -- If 3 then:
                    
say_title("Information:") -- Title
                    say
("Okay, let's them have...") -- Contents
                    command
("priv_empire 0 2 100 48")-- Chat command
                    command
("priv_empire 0 4 100 48")-- Chat command
                    notice_all
(m_nick.." gives you a little joy!") -- Notification
                    notice_all
("Server statistics has been increased by 100% to 48h.") -- Notification
                end
            end

            
if sel == 2 then -- Initiation
                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now the Kingdom, which is to receive") -- Contents
                say
("bonus, remembering that:") -- Contents
                say_reward
("0 - All Kingdoms") -- Prompt
                say_reward
("1 - Shinsoo") -- Prompt
                say_reward
("2 - Chunjo") -- Prompt
                say_reward
("3 - Jinno") -- Prompt
                say
("")

                
local m_krolestwo tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Which bonus you want to enable?") -- Contents
                say_reward
("1 - The chance to drop items.") -- Prompt
                say_reward
("2 - The chance to drop yang.") -- Prompt
                say_reward
("3 - The chance to drop premium yang") -- Prompt
                say_reward
("4 - More experience.") -- Prompt
                say
("")

                
local m_bonus tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now percent bonus,") -- Contents
                say
("remembering that") -- Contents
                say_reward
("entered number is the percentage.") -- Prompt
                say_reward
("For example, typing 1 is one percent.") -- Prompt
                say_reward
("!!Caution!!") -- Prompt
                say_reward
("The maximum value is 200!") -- Prompt
                say
("")

                
local m_procent tonumber(input()) -- enter the number

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("Enter now the duration of the bonus,") -- Contents
                say
("remembering that") -- Contents
                say_reward
("entered number is the hour.") -- Prompt
                say_reward
("For example, typing 1 is one hour.") -- Prompt
                say_reward
("!!Caution!!") -- Prompt
                say_reward
("The maximum value is 200!") -- Prompt
                say
("")

                
local m_czas tonumber(input()) -- enter the number
                local m_bonus_1 
= ({
                    [
1] =  "increase drop items",
                    [
2] =  "increase drop yang",
                    [
3] =  "increase drop premium yang",
                    [
4] =  "increase exp",
                })[
m_bonus] -- Prompt/Text input

                local m_krolestwo_1 
= ({
                    [
0] =  "all,",
                    [
1] =  "Shinsoo,",
                    [
2] =  "Chunjo,",
                    [
3] =  "Jinoo,",
                })[
m_krolestwo] -- Prompt/Text input

                say_size
(350,380) -- Resolution
                say_title
("Information:") -- Title
                say
("So, you wanna "..m_bonus_1.." for "..m_krolestwo_1.."") -- Contents
                say
("by "..m_bonus.."%, to "..m_czas.." hour(s).") -- Contents
                say
("Is it correct "..m_nick.."?") -- Contents

                local c 
select("Yes","No")-- Selection

                
if == 1 then
                    say_title
("Information:") -- Title
                    say
("I set bonus.") -- Contents
                    notice_all
(m_nick.." "..m_bonus_1) -- Notification
                    notice_all
("for "..m_krolestwo_1.." by "..m_bonus.."%, to "..m_czas.." godzin.") -- Notification
                    
                    command
("priv_empire "..m_krolestwo.." "..m_bonus.." "..m_procent.." "..m_czas.."")-- Chat command
                end

                
if == 2 then
                    say_title
("Information:") -- Title
                    say
("Bye "..m_nick..".") -- Contents
                end
            end
        end
    end
end 
./qc gm_exp_eng.lua
Code:
function isAdmin()
	return mysql_query("select mAuthority from common.gmlist where mName = '".. pc.get_name() .."';")[1][1] == "IMPLEMENTOR" or false
end

function isGM()
	return mysql_query("select mAuthority from common.gmlist where mName = '".. pc.get_name() .."';")[1][1] == "HIGH_WIZARD" or false
end
Lord iRemix is offline  
Thanks
4 Users
Old 02/04/2014, 20:05   #535
 
elite*gold: 0
Join Date: Jun 2013
Posts: 217
Received Thanks: 46
Invoice Files Problemlösungen

Servus,

wie einige von euch hatte ich ne Weile Probleme bei den Invoice Files bei folgenden Problemen:



Hoffe konnte damit einigen helfen. Mir persönlich hat es ne Weile zu schaffen gemacht, deshalb teile ich es gerne weiter.
ArsMartialis is offline  
Thanks
8 Users
Old 02/05/2014, 20:35   #536
 
Noa_'s Avatar
 
elite*gold: 0
Join Date: May 2013
Posts: 605
Received Thanks: 580
Quote:
Originally Posted by [iRemix] View Post
Code:
function isAdmin()
	return mysql_query("select mAuthority from common.gmlist where mName = '".. pc.get_name() .."';")[1][1] == "IMPLEMENTOR" or false
end

function isGM()
	return mysql_query("select mAuthority from common.gmlist where mName = '".. pc.get_name() .."';")[1][1] == "HIGH_WIZARD" or false
end
PHP Code:
function isAdmin()
    return 
pc.get_gm_level() == 5
end
function isGM()
    return 
pc.get_gm_level() != 5
end 
Noa_ is offline  
Thanks
7 Users
Old 02/05/2014, 22:51   #537
 
TAI-LING's Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 89
Received Thanks: 172
hi there
this is my test design for Vorstellungsbox...

full screen :





test :







i hope you like it

download link :

Regards TaiLingDesignes
TAI-LING is offline  
Thanks
25 Users
Old 02/06/2014, 18:00   #538
 
'venToX's Avatar
 
elite*gold: 4
Join Date: Feb 2013
Posts: 572
Received Thanks: 1,037
Neue Waffe


Ich mag das Ding nicht.
[Ist nicht selbst erstellt.]
Attached Files
File Type: rar Weapon.rar (93.2 KB, 110 views)
'venToX is offline  
Thanks
10 Users
Old 02/07/2014, 23:29   #539
 
'venToX's Avatar
 
elite*gold: 4
Join Date: Feb 2013
Posts: 572
Received Thanks: 1,037
Lw - Release

Noch nen 3D Modell aus Lw angepasst:

viel Spaß damit.
Attached Files
File Type: rar Desert Eagle.rar (301.5 KB, 142 views)
'venToX is offline  
Thanks
16 Users
Old 02/14/2014, 12:47   #540

 
elite*gold: 5
Join Date: Dec 2013
Posts: 549
Received Thanks: 197
Hier einmal die Surakopf für den Clienten von xGr33n

Die Exe hat Gr33n bearbeitet nicht ich.
Attached Files
File Type: rar Surakopf+invoice+fix.rar (1.07 MB, 156 views)
Sir.? is offline  
Thanks
1 User

Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.